diff options
author | imp <imp@FreeBSD.org> | 1997-03-29 04:34:07 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1997-03-29 04:34:07 +0000 |
commit | 141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0 (patch) | |
tree | ab151e53b638b3b80f31c7b8a8ab143c391d7b75 /usr.bin/kzip/kzip.c | |
parent | 167db5291223948e17d74470feff53f15777fcaf (diff) | |
download | FreeBSD-src-141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0.zip FreeBSD-src-141381e1cbdbd8001c13e9e8c0adbfc81d1b3cd0.tar.gz |
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'usr.bin/kzip/kzip.c')
-rw-r--r-- | usr.bin/kzip/kzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kzip/kzip.c b/usr.bin/kzip/kzip.c index 819efa2..8a8545d 100644 --- a/usr.bin/kzip/kzip.c +++ b/usr.bin/kzip/kzip.c @@ -9,7 +9,7 @@ * Copyright (C) 1993 Hannu Savolainen * Ported to 386bsd by Serge Vakulenko * based on tools/build.c by Linus Torvalds - * $Id$ + * $Id: kzip.c,v 1.7 1997/02/22 19:55:31 peter Exp $ * */ @@ -51,7 +51,7 @@ main(int argc, char **argv) char out[BUFSIZ]; char base[32]; - while ((c = getopt(argc, argv, "l:v")) != EOF) { + while ((c = getopt(argc, argv, "l:v")) != -1) { switch (c) { case 'l': forceaddr = strtoul(optarg, NULL, 0); |