From 38db00f17824f41679c99a6c711a11e4585a0484 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 19 Mar 2013 22:53:16 +0100 Subject: [PATCH] wipefs: add -f to getopt_long() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Dan HorĂ¡k Signed-off-by: Karel Zak --- misc-utils/wipefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/wipefs.c b/misc-utils/wipefs.c index 9fbfda9960..56024301e4 100644 --- a/misc-utils/wipefs.c +++ b/misc-utils/wipefs.c @@ -413,7 +413,7 @@ main(int argc, char **argv) textdomain(PACKAGE); atexit(close_stdout); - while ((c = getopt_long(argc, argv, "ahno:pqt:V", longopts, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "afhno:pqt:V", longopts, NULL)) != -1) { err_exclusive_options(c, longopts, excl, excl_st);