From 6c93da90187eff356d28caeebed772c3df593006 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Thu, 24 Jul 1997 01:35:31 +0000 Subject: argh --- usr.bin/join/join.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/join/join.c b/usr.bin/join/join.c index 5e97773b181..0ca203fd66f 100644 --- a/usr.bin/join/join.c +++ b/usr.bin/join/join.c @@ -1,4 +1,4 @@ -/* $Id: join.c,v 1.8 1997/07/23 02:59:33 deraadt Exp $ +/* $Id: join.c,v 1.9 1997/07/24 01:35:30 deraadt Exp $ /*- * Copyright (c) 1991, 1993, 1994 @@ -45,7 +45,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)join.c 8.6 (Berkeley) 5/4/95"; */ -static char rcsid[] = "$Id: join.c,v 1.8 1997/07/23 02:59:33 deraadt Exp $"; +static char rcsid[] = "$Id: join.c,v 1.9 1997/07/24 01:35:30 deraadt Exp $"; #endif /* not lint */ #include @@ -559,7 +559,7 @@ obsolete(argv) while ((ap = *++argv) != NULL) { /* Return if "--". */ - if (ap[0] != '-' || ap[0] == '-' && ap[1] == '-') + if (ap[0] == '-' && ap[1] == '-') return; switch (ap[1]) { case 'a': -- cgit v1.2.3