From: MichaƂ Bartoszkiewicz Date: Tue, 5 Jul 2016 17:23:23 +0000 (+0200) Subject: systemd-run: really make -E an alias for --setenv (#3654) X-Git-Tag: v231~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a17402291b627e330c44d1461c105de3277f4d88;p=thirdparty%2Fsystemd.git systemd-run: really make -E an alias for --setenv (#3654) systemd-run --help says: -E --setenv=NAME=VALUE Set environment --- diff --git a/src/run/run.c b/src/run/run.c index d6c9b6d37a5..58fa49a4d11 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -187,7 +187,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "+hrH:M:p:tq", options, NULL)) >= 0) + while ((c = getopt_long(argc, argv, "+hrH:M:E:p:tq", options, NULL)) >= 0) switch (c) {