summaryrefslogtreecommitdiff
path: root/loginutils/su.c
diff options
context:
space:
mode:
authorDenys Vlasenko2020-12-02 21:28:47 +0100
committerDenys Vlasenko2020-12-02 21:28:47 +0100
commit2075aa93e007863c6b680994a7a0ba420181034f (patch)
tree1e9a01215018359e4a8524a9a044d7a61fae1967 /loginutils/su.c
parentb4f93f562d261a163113cd15cc252c53d2fa27bb (diff)
downloadbusybox-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/su.c')
-rw-r--r--loginutils/su.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/su.c b/loginutils/su.c
index 6f91039..784a535 100644
--- a/loginutils/su.c
+++ b/loginutils/su.c
@@ -204,7 +204,7 @@ int su_main(int argc UNUSED_PARAM, char **argv)
*/
/* Never returns */
- run_shell(opt_shell, flags & SU_OPT_l, (const char**)argv);
+ exec_shell(opt_shell, flags & SU_OPT_l, (const char**)argv);
/* return EXIT_FAILURE; - not reached */
}