diff options
author | Denys Vlasenko | 2016-11-03 22:13:08 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-03 22:13:08 +0100 |
commit | 79e2598c48ad7e41d523f62368454c7d74f48268 (patch) | |
tree | b061ea33e433dcd509a99dc9726251f2e0f785e5 /include/libbb.h | |
parent | 2b288236e80938d29324072a823f46861bd07cd3 (diff) | |
download | busybox-79e2598c48ad7e41d523f62368454c7d74f48268.zip busybox-79e2598c48ad7e41d523f62368454c7d74f48268.tar.gz |
su: expand help; simplify passing of -c CMD to run_shell()
Also, added a comment about bug 9401 (TIOCSTI input injection).
function old new delta
packed_usage 30909 30932 +23
su_main 470 487 +17
sulogin_main 260 258 -2
run_applet_and_exit 681 678 -3
run_shell 166 126 -40
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3752df9..20fc732 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1341,7 +1341,7 @@ char *bb_simplify_abs_path_inplace(char *path) FAST_FUNC; #endif extern void bb_do_delay(int seconds) FAST_FUNC; extern void change_identity(const struct passwd *pw) FAST_FUNC; -extern void run_shell(const char *shell, int loginshell, const char *command, const char **additional_args) NORETURN FAST_FUNC; +extern void run_shell(const char *shell, int loginshell, const char **args) NORETURN FAST_FUNC; /* Returns $SHELL, getpwuid(getuid())->pw_shell, or DEFAULT_SHELL. * Note that getpwuid result might need xstrdup'ing |