nspawn: add missing -E to getopt_long (#4860)
authorWim de With <register@wimdewith.com>
Sat, 10 Dec 2016 04:33:58 +0000 (05:33 +0100)
committerEvgeny Vereshchagin <evvers@ya.ru>
Sat, 10 Dec 2016 04:33:58 +0000 (07:33 +0300)
src/nspawn/nspawn.c

index cb09392..f330375 100644 (file)
@@ -482,7 +482,7 @@ static int parse_argv(int argc, char *argv[]) {
         assert(argc >= 0);
         assert(argv);
 
-        while ((c = getopt_long(argc, argv, "+hD:u:abL:M:jS:Z:qi:xp:nU", options, NULL)) >= 0)
+        while ((c = getopt_long(argc, argv, "+hD:u:abL:M:jS:Z:qi:xp:nUE:", options, NULL)) >= 0)
 
                 switch (c) {