From 5ebc88fa2c7fe89dd3e0bc811f2b71f37248c1fa Mon Sep 17 00:00:00 2001 From: millert Date: Fri, 28 Feb 1997 08:38:26 +0000 Subject: [PATCH] Add -f to getopt() -- that'll teach me to test first. --- sbin/fsck_msdos/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbin/fsck_msdos/main.c b/sbin/fsck_msdos/main.c index edfef19f6d5..3e388f6d619 100644 --- a/sbin/fsck_msdos/main.c +++ b/sbin/fsck_msdos/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.5 1997/02/28 07:47:52 millert Exp $ */ +/* $OpenBSD: main.c,v 1.6 1997/02/28 08:38:26 millert Exp $ */ /* $NetBSD: main.c,v 1.1.4.1 1996/05/31 18:41:54 jtc Exp $ */ /* @@ -35,7 +35,7 @@ #ifndef lint -static char rcsid[] = "$OpenBSD: main.c,v 1.5 1997/02/28 07:47:52 millert Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.6 1997/02/28 08:38:26 millert Exp $"; #endif /* not lint */ #include @@ -74,7 +74,7 @@ main(argc, argv) int ret = 0, erg; int ch; - while ((ch = getopt(argc, argv, "vpyn")) != -1) { + while ((ch = getopt(argc, argv, "vpynf")) != -1) { switch (ch) { case 'n': alwaysno = 1; -- 2.20.1