summaryrefslogtreecommitdiffstats
path: root/usr.sbin/inetd
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1997-03-31 05:11:47 +0000
committerimp <imp@FreeBSD.org>1997-03-31 05:11:47 +0000
commit691010efad5c05f7ee86a870abce217fe8e9b8d1 (patch)
treeb28e04577780319990238a98e7549582e44d9d51 /usr.sbin/inetd
parent3d7b78ed8c2fd06816b04ddcb57d58281409aa62 (diff)
downloadFreeBSD-src-691010efad5c05f7ee86a870abce217fe8e9b8d1.zip
FreeBSD-src-691010efad5c05f7ee86a870abce217fe8e9b8d1.tar.gz
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'usr.sbin/inetd')
-rw-r--r--usr.sbin/inetd/inetd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c
index feef796..a1ef058 100644
--- a/usr.sbin/inetd/inetd.c
+++ b/usr.sbin/inetd/inetd.c
@@ -40,7 +40,7 @@ static char copyright[] __attribute__ ((unused)) =
#ifndef lint
/* from: @(#)inetd.c 8.4 (Berkeley) 4/13/94"; */
static char inetd_c_rcsid[] __attribute__ ((unused)) =
- "$Id$";
+ "$Id: inetd.c,v 1.21 1997/02/22 16:05:52 peter Exp $";
#endif /* not lint */
/*
@@ -289,7 +289,7 @@ main(argc, argv, envp)
openlog("inetd", LOG_PID | LOG_NOWAIT, LOG_DAEMON);
bind_address.s_addr = htonl(INADDR_ANY);
- while ((ch = getopt(argc, argv, "dlR:a:p:")) != EOF)
+ while ((ch = getopt(argc, argv, "dlR:a:p:")) != -1)
switch(ch) {
case 'd':
debug = 1;
OpenPOWER on IntegriCloud