diff options
Diffstat (limited to 'sbin/dumpon')
-rw-r--r-- | sbin/dumpon/dumpon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dumpon/dumpon.c b/sbin/dumpon/dumpon.c index 27e7a3d..8da85cd 100644 --- a/sbin/dumpon/dumpon.c +++ b/sbin/dumpon/dumpon.c @@ -40,7 +40,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "From: @(#)swapon.c 8.1 (Berkeley) 6/5/93";*/ static const char rcsid[] = - "$Id$"; + "$Id: dumpon.c,v 1.4 1997/02/22 14:32:22 peter Exp $"; #endif /* not lint */ #include <errno.h> @@ -68,7 +68,7 @@ main(int argc, char **argv) verbose = rv = 0; whoami = argv[0]; - while ((ch = getopt(argc, argv, "v")) != EOF) + while ((ch = getopt(argc, argv, "v")) != -1) switch((char)ch) { case 'v': verbose = 1; |