From ab2bf5b51a1ca14cef63e8a7a88b039f173a210a Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Mon, 18 Jan 2016 20:11:01 -0600 Subject: repquota: -F option takes an arg Commit a5876145 added a new -O option which takes an argument, but in the process lost the argument specifier for "F". As a result, the use of "-F" segfaults when NULL is sent to name2fmt() instead of the provided argument. Signed-off-by: Eric Sandeen Signed-off-by: Jan Kara --- repquota.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repquota.c b/repquota.c index 744af70..6fe9f0c 100644 --- a/repquota.c +++ b/repquota.c @@ -90,7 +90,7 @@ static void parse_options(int argcnt, char **argstr) { NULL, 0, NULL, 0 } }; - while ((ret = getopt_long(argcnt, argstr, "VavughtspncCiFO:", long_opts, NULL)) != -1) { + while ((ret = getopt_long(argcnt, argstr, "VavughtspncCiF:O:", long_opts, NULL)) != -1) { switch (ret) { case '?': case 'h': -- cgit v1.2.3