diff options
author | Warner Losh <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
commit | 8d64695c7c6791641c71b15441665bafc43c2bd0 (patch) | |
tree | cf87bbae47f28b546d1ad8e17e84cacc7b425da6 /sbin/nfsiod/nfsiod.c | |
parent | f37dd3ba03f77cd17af02a6e72bd8cb089026bce (diff) | |
download | src-8d64695c7c6791641c71b15441665bafc43c2bd0.tar.gz src-8d64695c7c6791641c71b15441665bafc43c2bd0.zip |
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Notes
Notes:
svn path=/head/; revision=24359
Diffstat (limited to 'sbin/nfsiod/nfsiod.c')
-rw-r--r-- | sbin/nfsiod/nfsiod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/nfsiod/nfsiod.c b/sbin/nfsiod/nfsiod.c index 82443711dbfd..e2479fe2ed55 100644 --- a/sbin/nfsiod/nfsiod.c +++ b/sbin/nfsiod/nfsiod.c @@ -102,7 +102,7 @@ main(argc, argv) #define MAXNFSDCNT 20 #define DEFNFSDCNT 1 num_servers = DEFNFSDCNT; - while ((ch = getopt(argc, argv, "n:")) != EOF) + while ((ch = getopt(argc, argv, "n:")) != -1) switch (ch) { case 'n': num_servers = atoi(optarg); |