btrfs-progs: recieve: add missing short option E to getopt

This fixes "btrfs receive -E".

Signed-off-by: Tomohiro Misono <misono.tomohiro@jp.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.com>
master
Misono, Tomohiro 2017-08-24 14:24:03 +09:00 committed by David Sterba
parent 80852c3c3f
commit a1e935d233
1 changed files with 1 additions and 1 deletions

View File

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