aboutsummaryrefslogtreecommitdiff
path: root/sbin/mount_msdosfs/mount_msdosfs.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>1997-03-29 03:33:12 +0000
committerWarner Losh <imp@FreeBSD.org>1997-03-29 03:33:12 +0000
commit8d64695c7c6791641c71b15441665bafc43c2bd0 (patch)
treecf87bbae47f28b546d1ad8e17e84cacc7b425da6 /sbin/mount_msdosfs/mount_msdosfs.c
parentf37dd3ba03f77cd17af02a6e72bd8cb089026bce (diff)
downloadsrc-8d64695c7c6791641c71b15441665bafc43c2bd0.tar.gz
src-8d64695c7c6791641c71b15441665bafc43c2bd0.zip
Notes
Diffstat (limited to 'sbin/mount_msdosfs/mount_msdosfs.c')
-rw-r--r--sbin/mount_msdosfs/mount_msdosfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mount_msdosfs/mount_msdosfs.c b/sbin/mount_msdosfs/mount_msdosfs.c
index dff366b2df62..53ae83b044e4 100644
--- a/sbin/mount_msdosfs/mount_msdosfs.c
+++ b/sbin/mount_msdosfs/mount_msdosfs.c
@@ -30,7 +30,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id: mount_msdos.c,v 1.7 1997/02/22 14:32:30 peter Exp $";
+ "$Id: mount_msdos.c,v 1.8 1997/03/03 13:23:54 bde Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -75,7 +75,7 @@ main(argc, argv)
mntflags = set_gid = set_uid = set_mask = 0;
(void)memset(&args, '\0', sizeof(args));
- while ((c = getopt(argc, argv, "u:g:m:o:")) != EOF) {
+ while ((c = getopt(argc, argv, "u:g:m:o:")) != -1) {
switch (c) {
case 'u':
args.uid = a_uid(optarg);