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/mount/mount_ufs.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/mount/mount_ufs.c')
-rw-r--r-- | sbin/mount/mount_ufs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |