wipefs: Allow b to be used as the short option for backup

'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@worldbroken.com>
This commit is contained in:
Bill Pemberton 2015-12-10 10:02:34 -05:00 committed by Karel Zak
parent 85008725d0
commit 11290b849f
1 changed files with 1 additions and 1 deletions

View File

@ -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);