diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2018-12-17 08:35:22 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2018-12-17 08:35:22 +0000 |
commit | a5d7492de023fa76697459cc05f15922deb2477a (patch) | |
tree | de7f7ddb72670efbba979e5cee32818d8beb3b02 /src/supervision | |
parent | 69353b407a2916ea47b3e6043b5321da4bdd460f (diff) | |
download | s6-a5d7492de023fa76697459cc05f15922deb2477a.tar.xz |
bugfix: s6-svc -r wasn't accepted
Diffstat (limited to 'src/supervision')
-rw-r--r-- | src/supervision/s6-svc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/supervision/s6-svc.c b/src/supervision/s6-svc.c index 2166551..ee7ddc5 100644 --- a/src/supervision/s6-svc.c +++ b/src/supervision/s6-svc.c @@ -26,7 +26,7 @@ int main (int argc, char const *const *argv, char const *const *envp) subgetopt_t l = SUBGETOPT_ZERO ; for (;;) { - int opt = subgetopt_r(argc, argv, "abqhkti12pcoduxOXyT:w:", &l) ; + int opt = subgetopt_r(argc, argv, "abqhkti12pcyroduxOXT:w:", &l) ; if (opt == -1) break ; switch (opt) { |