aboutsummaryrefslogtreecommitdiff
path: root/libbb/setup_environment.c
diff options
context:
space:
mode:
Diffstat (limited to 'libbb/setup_environment.c')
-rw-r--r--libbb/setup_environment.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c
index 73229ca6c..4258656fe 100644
--- a/libbb/setup_environment.c
+++ b/libbb/setup_environment.c
@@ -37,9 +37,11 @@ void FAST_FUNC setup_environment(const char *shell, int flags, const struct pass
37 37
38 /* Change the current working directory to be the home directory 38 /* Change the current working directory to be the home directory
39 * of the user */ 39 * of the user */
40 if (chdir(pw->pw_dir)) { 40 if (!(flags & SETUP_ENV_NO_CHDIR)) {
41 xchdir((flags & SETUP_ENV_TO_TMP) ? "/tmp" : "/"); 41 if (chdir(pw->pw_dir) != 0) {
42 bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir); 42 bb_error_msg("can't change directory to '%s'", pw->pw_dir);
43 xchdir((flags & SETUP_ENV_TO_TMP) ? "/tmp" : "/");
44 }
43 } 45 }
44 46
45 if (flags & SETUP_ENV_CLEARENV) { 47 if (flags & SETUP_ENV_CLEARENV) {