From: David Sterba Date: Mon, 19 Sep 2016 17:43:24 +0000 (+0200) Subject: btrfs-progs: subvol create: remove v from getopt X-Git-Tag: upstream/4.16.1~1293 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eccba6261a2060aed34f3a777b5f137afbb96177;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: subvol create: remove v from getopt The option 'v' was mistakenly added in 2ed161bd281beca29feebebbc8c4227cc6e918c3 but there's no such option for create at the moment, remove it. Signed-off-by: David Sterba --- diff --git a/cmds-subvolume.c b/cmds-subvolume.c index c639553..b3f7cbc 100644 --- a/cmds-subvolume.c +++ b/cmds-subvolume.c @@ -128,7 +128,7 @@ static int cmd_subvol_create(int argc, char **argv) DIR *dirstream = NULL; while (1) { - int c = getopt(argc, argv, "c:i:v"); + int c = getopt(argc, argv, "c:i:"); if (c < 0) break;