diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-02-12 01:55:55 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-02-12 01:55:55 +0000 |
commit | 3be351795d5aed9221b9621b7e4f124e656c830d (patch) | |
tree | edc85e08a86424dd4c4c3a3060233226c18d598c /tools | |
parent | 6faa2e6a2ecdb504c305d0a0cb76ea6240da105d (diff) | |
download | execline-3be351795d5aed9221b9621b7e4f124e656c830d.tar.xz |
Fix multicall usage
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen-multicall.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-multicall.sh b/tools/gen-multicall.sh index 070af4e..1d3d9fe 100755 --- a/tools/gen-multicall.sh +++ b/tools/gen-multicall.sh @@ -74,13 +74,13 @@ cat <<EOF } ; #define USAGE "execline subcommand [ arguments... ]" -#define dieusage() strerr_dief1x(100, USAGE) +#define dieusage() strerr_dieusage(100, USAGE) static int execline_main (int argc, char **argv, char const *const *envp) { execline_app const *p ; PROG = "execline" ; - if (!argc) dieusage() ; + if (argc < 2) dieusage() ; p = bsearch(argv[1], execline_apps, sizeof(execline_apps) / sizeof(execline_app), sizeof(execline_app), &execline_app_cmp) ; if (!p) strerr_dief2x(100, "unknown subcommand: ", argv[1]) ; return (*(p->mainf))(argc-1, argv+1, envp) ; |