From 8d64695c7c6791641c71b15441665bafc43c2bd0 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 29 Mar 1997 03:33:12 +0000 Subject: compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic. --- sbin/mount/mount_ufs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/mount/mount_ufs.c') diff --git a/sbin/mount/mount_ufs.c b/sbin/mount/mount_ufs.c index c12cccf1840d..b6344d125963 100644 --- a/sbin/mount/mount_ufs.c +++ b/sbin/mount/mount_ufs.c @@ -81,7 +81,7 @@ mount_ufs(argc, argv) mntflags = 0; optind = optreset = 1; /* Reset for parse of new argv. */ - while ((ch = getopt(argc, argv, "o:")) != EOF) + while ((ch = getopt(argc, argv, "o:")) != -1) switch (ch) { case 'o': getmntopts(optarg, mopts, &mntflags, 0); -- cgit v1.2.3