diff options
author | imp <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1997-03-29 03:33:12 +0000 |
commit | 167db5291223948e17d74470feff53f15777fcaf (patch) | |
tree | 01c0debb3ff124595890fe1408caea5024debc1f /sbin/mountd | |
parent | acc1b708c198fcaff62c716caea359a1cc7eb9d0 (diff) | |
download | FreeBSD-src-167db5291223948e17d74470feff53f15777fcaf.zip FreeBSD-src-167db5291223948e17d74470feff53f15777fcaf.tar.gz |
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'sbin/mountd')
-rw-r--r-- | sbin/mountd/mountd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index 8039be8..aef2583 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -43,7 +43,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "@(#)mountd.c 8.15 (Berkeley) 5/1/95"; */ static const char rcsid[] = - "$Id: mountd.c,v 1.14 1997/03/11 12:43:45 peter Exp $"; + "$Id: mountd.c,v 1.15 1997/03/27 20:00:48 guido Exp $"; #endif /*not lint*/ #include <sys/param.h> @@ -270,7 +270,7 @@ main(argc, argv) errx(1, "NFS support is not available in the running kernel"); #endif /* __FreeBSD__ */ - while ((c = getopt(argc, argv, "dnr")) != EOF) + while ((c = getopt(argc, argv, "dnr")) != -1) switch (c) { case 'n': resvport_only = 0; |