summaryrefslogtreecommitdiff
path: root/src/stdio-bridge
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-03-19 13:03:18 +0100
committerLennart Poettering <lennart@poettering.net>2019-03-19 15:29:44 +0100
commit578e95de48b8f9178be73beb207df29b147d2e0e (patch)
tree8cf075ce1472aa90c77da84e9e5053eba4184b54 /src/stdio-bridge
parent4e17e5c2bf494323ff57ad3a09bf238de4fcc4db (diff)
downloadsystemd-578e95de48b8f9178be73beb207df29b147d2e0e.tar.gz
stdio-bridge: fix getopt() parameter list to match reality
Diffstat (limited to 'src/stdio-bridge')
-rw-r--r--src/stdio-bridge/stdio-bridge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdio-bridge/stdio-bridge.c b/src/stdio-bridge/stdio-bridge.c
index 1767515e3e..8022d3e596 100644
--- a/src/stdio-bridge/stdio-bridge.c
+++ b/src/stdio-bridge/stdio-bridge.c
@@ -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) {