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 /libbb/executable.c | |
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 'libbb/executable.c')
-rw-r--r-- | libbb/executable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/executable.c b/libbb/executable.c index 05e7031..3a1d4ff 100644 --- a/libbb/executable.c +++ b/libbb/executable.c @@ -97,5 +97,5 @@ void FAST_FUNC exec_prog_or_SHELL(char **argv) if (argv[0]) { BB_EXECVP_or_die(argv); } - run_shell(getenv("SHELL"), /*login:*/ 1, NULL, NULL); + run_shell(getenv("SHELL"), /*login:*/ 1, NULL); } |