diff options
Diffstat (limited to 'libbb/setup_environment.c')
-rw-r--r-- | libbb/setup_environment.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c index dfab786d9..a14649625 100644 --- a/libbb/setup_environment.c +++ b/libbb/setup_environment.c | |||
@@ -60,10 +60,7 @@ void setup_environment ( const char *shell, int loginshell, int changeenv, const | |||
60 | * Some systems default to HOME=/ | 60 | * Some systems default to HOME=/ |
61 | */ | 61 | */ |
62 | if ( chdir ( pw-> pw_dir )) { | 62 | if ( chdir ( pw-> pw_dir )) { |
63 | if ( chdir ( "/" )) { | 63 | xchdir ( "/" ); |
64 | syslog ( LOG_WARNING, "unable to cd to %s' for user %s'\n", pw-> pw_dir, pw-> pw_name ); | ||
65 | bb_error_msg_and_die ( "cannot cd to home directory or /" ); | ||
66 | } | ||
67 | fputs ( "warning: cannot change to home directory\n", stderr ); | 64 | fputs ( "warning: cannot change to home directory\n", stderr ); |
68 | } | 65 | } |
69 | 66 | ||