From: Bill Pemberton <wfp5p@xxxxxxxxxxxxxxx> 'b' is documented as the short option for backup but b was not added to the optstring on the getopt_long call. Add it. Signed-off-by: Bill Pemberton <wfp5p@xxxxxxxxxxxxxxx> --- 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 589f53503847..594894447e63 100644 --- a/misc-utils/wipefs.c +++ b/misc-utils/wipefs.c @@ -504,7 +504,7 @@ main(int argc, char **argv) textdomain(PACKAGE); atexit(close_stdout); - while ((c = getopt_long(argc, argv, "afhno:pqt:V", longopts, NULL)) != -1) { + while ((c = getopt_long(argc, argv, "abfhno:pqt:V", longopts, NULL)) != -1) { err_exclusive_options(c, longopts, excl, excl_st); -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html