diff options
author | Denys Vlasenko | 2021-08-16 08:53:42 +0200 |
---|---|---|
committer | Denys Vlasenko | 2021-08-16 08:53:42 +0200 |
commit | 59243a86d97b793bd4e2c98911fd3a7e41af34c4 (patch) | |
tree | 0777d6366697e68b30a982cb19baf7de7a4e1cc9 | |
parent | 8e8cea2a1bc5cf0550f6032abc30593d9a62e58c (diff) | |
download | busybox-59243a86d97b793bd4e2c98911fd3a7e41af34c4.zip busybox-59243a86d97b793bd4e2c98911fd3a7e41af34c4.tar.gz |
busybox: fix "busybox --help busybox" not showing correct text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/appletlib.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 2feed64..14be336 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -893,7 +893,11 @@ int busybox_main(int argc UNUSED_PARAM, char **argv) if (strcmp(argv[1], "--help") == 0) { /* "busybox --help [<applet>]" */ - if (!argv[2]) + if (!argv[2] +# if ENABLE_FEATURE_SH_STANDALONE && ENABLE_FEATURE_TAB_COMPLETION + || strcmp(argv[2], "busybox") == 0 /* prevent getting "No help available" */ +# endif + ) goto help; /* convert to "<applet> --help" */ applet_name = argv[0] = argv[2]; |