From d58f8a4c5b077527b0d642bcb5a04a0cf129cc86 Mon Sep 17 00:00:00 2001 From: millert <> Date: Sat, 7 Dec 2002 19:48:32 +0000 Subject: [PATCH] Fix pasto in last commit. --- src/lib/libc/stdlib/getopt_long.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libc/stdlib/getopt_long.c b/src/lib/libc/stdlib/getopt_long.c index 7f6dc23c..c4f09cb2 100644 --- a/src/lib/libc/stdlib/getopt_long.c +++ b/src/lib/libc/stdlib/getopt_long.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getopt_long.c,v 1.6 2002/12/07 19:15:59 millert Exp $ */ +/* $OpenBSD: getopt_long.c,v 1.7 2002/12/07 19:48:32 millert Exp $ */ /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ /* @@ -64,7 +64,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: getopt_long.c,v 1.6 2002/12/07 19:15:59 millert Exp $"; +static char *rcsid = "$OpenBSD: getopt_long.c,v 1.7 2002/12/07 19:48:32 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include @@ -408,7 +408,7 @@ start: short_too = 0; if (*place == '-') place++; /* --foo long option */ - else if (*place != ':' && strchr(options, optchar) != NULL) + else if (*place != ':' && strchr(options, *place) != NULL) short_too = 1; /* could be short option too */ optchar = parse_long_options(nargv, options, long_options,