diff options
Diffstat (limited to 'libbb/run_shell.c')
-rw-r--r-- | libbb/run_shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/run_shell.c b/libbb/run_shell.c index de7b92a..6f98bd6 100644 --- a/libbb/run_shell.c +++ b/libbb/run_shell.c @@ -86,5 +86,5 @@ void FAST_FUNC run_shell(const char *shell, int loginshell, const char *command, freecon(current_sid); #endif execv(shell, (char **) args); - bb_perror_msg_and_die("can't run %s", shell); + bb_perror_msg_and_die("can't run '%s'", shell); } |