From: Evangelos Foutras Date: Mon, 29 Apr 2013 10:12:28 +0000 (+0300) Subject: nspawn: add -M option to optstring X-Git-Tag: v203~64 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d7e011e5bfa3361faf52b7b2dbacd11373d7fb86;p=elogind.git nspawn: add -M option to optstring This was missed in commit 7027ff61a34a12487712b382a061c654acc3a679 and means that the --machine option would work but not its shorthand, -M. --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 7b4157103..a49cbc223 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -173,7 +173,7 @@ static int parse_argv(int argc, char *argv[]) { assert(argc >= 0); assert(argv); - while ((c = getopt_long(argc, argv, "+hD:u:C:bj", options, NULL)) >= 0) { + while ((c = getopt_long(argc, argv, "+hD:u:C:bM:j", options, NULL)) >= 0) { switch (c) {