From 691010efad5c05f7ee86a870abce217fe8e9b8d1 Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 31 Mar 1997 05:11:47 +0000 Subject: compare return value from getopt against -1 rather than EOF, per the final posix standard on the topic. --- usr.sbin/mkdosfs/mkdosfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/mkdosfs/mkdosfs.c') diff --git a/usr.sbin/mkdosfs/mkdosfs.c b/usr.sbin/mkdosfs/mkdosfs.c index c3d88da..6fc9276 100644 --- a/usr.sbin/mkdosfs/mkdosfs.c +++ b/usr.sbin/mkdosfs/mkdosfs.c @@ -29,7 +29,7 @@ /* * Create an MS-DOS (FAT) file system. * - * $Id$ + * $Id: mkdosfs.c,v 1.4 1997/02/22 16:06:38 peter Exp $ */ #include @@ -206,7 +206,7 @@ main(int argc, char **argv) int c, i, fd, format = 0, rootdirsize; const char *label = 0; - while((c = getopt(argc, argv, "f:L:")) != EOF) + while((c = getopt(argc, argv, "f:L:")) != -1) switch(c) { case 'f': -- cgit v1.1