stdio-bridge: fix getopt() parameter list to match reality

This commit is contained in:
Lennart Poettering 2019-03-19 13:03:18 +01:00
parent 4e17e5c2bf
commit 578e95de48

View file

@ -57,7 +57,7 @@ static int parse_argv(int argc, char *argv[]) {
assert(argc >= 0);
assert(argv);
while ((c = getopt_long(argc, argv, "hsup:", options, NULL)) >= 0) {
while ((c = getopt_long(argc, argv, "hp:M:", options, NULL)) >= 0) {
switch (c) {