From: Vladimir Serbinenko Date: Fri, 24 Apr 2015 15:52:30 +0000 (+0200) Subject: Remove -V in grub-mkrescue.c X-Git-Tag: 2.02-beta3~334 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70b002de55abbfd6b2d2f2ea4408078d93c9e0de;p=thirdparty%2Fgrub.git Remove -V in grub-mkrescue.c It clashhes with -V which is alias to -volid. --- diff --git a/util/grub-mkrescue.c b/util/grub-mkrescue.c index 5d3ec0d4e..815fc9175 100644 --- a/util/grub-mkrescue.c +++ b/util/grub-mkrescue.c @@ -409,7 +409,7 @@ args_to_eat (const char *arg) return 2; return 1; } - if (arg[1] == '?' || arg[1] == 'V') + if (arg[1] == '?') return 1; } return 0;