Skip to content
Snippets Groups Projects
Commit 0336fff7 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

fix number of opts available

parent 8c0fe575
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
#include <66/service.h>
#define DATASIZE 63
#define DATASIZE 64
#define SVC_FLAGS_STARTING 1 // 1 starting not really up
#define SVC_FLAGS_STOPPING (1 << 1) // 2 stopping not really down
......
......@@ -249,7 +249,7 @@ char const *help_remove =
" -P: do not propagate signal to its dependencies at stop process\n"
;
char const *usage_signal = "66 signal [ -h ] [ -wu | -wU | -wd | -wD | -wr | -wR ] [ -abqHkti12pcyodDuUxOr ] service..." ;
char const *usage_signal = "66 signal [ -h ] [ -wu | -wU | -wd | -wD | -wr | -wR ] [ -abqHkti12pcysodDuUxOr ] service..." ;
char const *help_signal =
"\nsend a signal to services\n"
......
......@@ -21,6 +21,7 @@
#include <skalibs/sgetopt.h>
#include <skalibs/nsig.h>
#include <skalibs/sig.h>
#include <66/svc.h>
#include <66/config.h>
......@@ -94,6 +95,7 @@ int ssexec_signal(int argc, char const *const *argv, ssexec_t *info)
if (opt == -1) break ;
switch (opt) {
case 'h' : info_help(info->help, info->usage) ; return 0 ;
case 's' :
{
int sig ;
......@@ -103,7 +105,6 @@ int ssexec_signal(int argc, char const *const *argv, ssexec_t *info)
log_die(LOG_EXIT_USER, l.arg, " is not in the list of user-available signals") ;
opt = cmdsig[sig] ;
}
case 'h' : info_help(info->help, info->usage) ; return 0 ;
case 'a' :
case 'b' :
case 'q' :
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment