diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-24 01:35:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-24 01:35:31 +0000 |
commit | 6c93da90187eff356d28caeebed772c3df593006 (patch) | |
tree | 23490dd7ee3e05fe4e88f64a6a395d97f253364c | |
parent | bdd6c46612c883d22a4557e70010e8e721f0db41 (diff) |
argh
-rw-r--r-- | usr.bin/join/join.c | 6 |
1 files 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 <sys/param.h> @@ -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': |