diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-02 21:28:47 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-02 21:28:47 +0100 |
commit | 2075aa93e007863c6b680994a7a0ba420181034f (patch) | |
tree | 1e9a01215018359e4a8524a9a044d7a61fae1967 /loginutils | |
parent | b4f93f562d261a163113cd15cc252c53d2fa27bb (diff) | |
download | busybox-w32-2075aa93e007863c6b680994a7a0ba420181034f.tar.gz busybox-w32-2075aa93e007863c6b680994a7a0ba420181034f.tar.bz2 busybox-w32-2075aa93e007863c6b680994a7a0ba420181034f.zip |
libbb: rename run_shell() to exec_shell()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/login.c | 2 | ||||
-rw-r--r-- | loginutils/su.c | 2 | ||||
-rw-r--r-- | loginutils/sulogin.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index f0bce50ce..aacd47241 100644 --- a/loginutils/login.c +++ b/loginutils/login.c | |||
@@ -602,7 +602,7 @@ int login_main(int argc UNUSED_PARAM, char **argv) | |||
602 | signal(SIGINT, SIG_DFL); | 602 | signal(SIGINT, SIG_DFL); |
603 | 603 | ||
604 | /* Exec login shell with no additional parameters */ | 604 | /* Exec login shell with no additional parameters */ |
605 | run_shell(pw->pw_shell, 1, NULL); | 605 | exec_shell(pw->pw_shell, 1, NULL); |
606 | 606 | ||
607 | /* return EXIT_FAILURE; - not reached */ | 607 | /* return EXIT_FAILURE; - not reached */ |
608 | } | 608 | } |
diff --git a/loginutils/su.c b/loginutils/su.c index 6f91039f9..784a53552 100644 --- a/loginutils/su.c +++ b/loginutils/su.c | |||
@@ -204,7 +204,7 @@ int su_main(int argc UNUSED_PARAM, char **argv) | |||
204 | */ | 204 | */ |
205 | 205 | ||
206 | /* Never returns */ | 206 | /* Never returns */ |
207 | run_shell(opt_shell, flags & SU_OPT_l, (const char**)argv); | 207 | exec_shell(opt_shell, flags & SU_OPT_l, (const char**)argv); |
208 | 208 | ||
209 | /* return EXIT_FAILURE; - not reached */ | 209 | /* return EXIT_FAILURE; - not reached */ |
210 | } | 210 | } |
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c index 48dafd186..127aa1de9 100644 --- a/loginutils/sulogin.c +++ b/loginutils/sulogin.c | |||
@@ -89,5 +89,5 @@ int sulogin_main(int argc UNUSED_PARAM, char **argv) | |||
89 | shell = pwd->pw_shell; | 89 | shell = pwd->pw_shell; |
90 | 90 | ||
91 | /* Exec login shell with no additional parameters. Never returns. */ | 91 | /* Exec login shell with no additional parameters. Never returns. */ |
92 | run_shell(shell, 1, NULL); | 92 | exec_shell(shell, 1, NULL); |
93 | } | 93 | } |