diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2001-10-24 13:06:37 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2001-10-24 13:06:37 +0000 |
commit | 9531af194e3d30d1d195cd6cee8ddf4e13f5e668 (patch) | |
tree | 50e73d1a354adfd017b644ec37a53be2492d04a7 /usr.sbin/tokeninit/tokeninit.c | |
parent | a8300e86e7f5e26893c1db0e382f2f2ce983954c (diff) |
getopt(3) returns -1 when out of args, not EOF.
millert@ ok
Diffstat (limited to 'usr.sbin/tokeninit/tokeninit.c')
-rw-r--r-- | usr.sbin/tokeninit/tokeninit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tokeninit/tokeninit.c b/usr.sbin/tokeninit/tokeninit.c index 97f220f535b..2e56de30d05 100644 --- a/usr.sbin/tokeninit/tokeninit.c +++ b/usr.sbin/tokeninit/tokeninit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tokeninit.c,v 1.2 2000/12/20 20:08:22 markus Exp $ */ +/* $OpenBSD: tokeninit.c,v 1.3 2001/10/24 13:06:36 mpech Exp $ */ /*- * Copyright (c) 1995 Migration Associates Corp. All Rights Reserved @@ -89,7 +89,7 @@ main(int argc, char **argv) else optstr = "fm:sv"; - while ((c = getopt(argc, argv, optstr)) != EOF) + while ((c = getopt(argc, argv, optstr)) != -1) switch (c) { case 'f': /* force initialize existing user account */ cmd |= TOKEN_FORCEINIT; |