From: Misono, Tomohiro Date: Thu, 24 Aug 2017 05:24:03 +0000 (+0900) Subject: btrfs-progs: recieve: add missing short option E to getopt X-Git-Tag: upstream/4.16.1~524 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1e935d233359e48518222040ac1a7d930461593;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: recieve: add missing short option E to getopt This fixes "btrfs receive -E". Signed-off-by: Tomohiro Misono Signed-off-by: David Sterba --- diff --git a/cmds-receive.c b/cmds-receive.c index 72e9c8f..e584cef 100644 --- a/cmds-receive.c +++ b/cmds-receive.c @@ -1277,7 +1277,7 @@ int cmd_receive(int argc, char **argv) { NULL, 0, NULL, 0 } }; - c = getopt_long(argc, argv, "Cevf:m:", long_opts, NULL); + c = getopt_long(argc, argv, "Cevf:m:E:", long_opts, NULL); if (c < 0) break;