diff options
author | Denys Vlasenko | 2020-12-02 21:28:47 +0100 |
---|---|---|
committer | Denys Vlasenko | 2020-12-02 21:28:47 +0100 |
commit | 2075aa93e007863c6b680994a7a0ba420181034f (patch) | |
tree | 1e9a01215018359e4a8524a9a044d7a61fae1967 /loginutils/sulogin.c | |
parent | b4f93f562d261a163113cd15cc252c53d2fa27bb (diff) | |
download | busybox-2075aa93e007863c6b680994a7a0ba420181034f.zip busybox-2075aa93e007863c6b680994a7a0ba420181034f.tar.gz |
libbb: rename run_shell() to exec_shell()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'loginutils/sulogin.c')
-rw-r--r-- | loginutils/sulogin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c index 48dafd1..127aa1d 100644 --- a/loginutils/sulogin.c +++ b/loginutils/sulogin.c @@ -89,5 +89,5 @@ int sulogin_main(int argc UNUSED_PARAM, char **argv) shell = pwd->pw_shell; /* Exec login shell with no additional parameters. Never returns. */ - run_shell(shell, 1, NULL); + exec_shell(shell, 1, NULL); } |