aboutsummaryrefslogtreecommitdiff
path: root/libbb/xfuncs_printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/xfuncs_printf.c')
-rw-r--r--libbb/xfuncs_printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/xfuncs_printf.c b/libbb/xfuncs_printf.c
index d8a42ba0b..05aa07ce8 100644
--- a/libbb/xfuncs_printf.c
+++ b/libbb/xfuncs_printf.c
@@ -355,13 +355,13 @@ void FAST_FUNC xsetuid(uid_t uid)
355void FAST_FUNC xchdir(const char *path) 355void FAST_FUNC xchdir(const char *path)
356{ 356{
357 if (chdir(path)) 357 if (chdir(path))
358 bb_perror_msg_and_die("chdir(%s)", path); 358 bb_perror_msg_and_die("can't change directory to '%s'", path);
359} 359}
360 360
361void FAST_FUNC xchroot(const char *path) 361void FAST_FUNC xchroot(const char *path)
362{ 362{
363 if (chroot(path)) 363 if (chroot(path))
364 bb_perror_msg_and_die("can't change root directory to %s", path); 364 bb_perror_msg_and_die("can't change root directory to '%s'", path);
365 xchdir("/"); 365 xchdir("/");
366} 366}
367 367