aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-02-26 09:52:45 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-02-26 09:52:45 +0100
commitfd686a262fa34b71900b010b4b31d7e2e3f3385c (patch)
tree102c38699d6d732ed0f5bc2e478a824e59a59f75 /libbb
parent99709ab03387ca623e3fc1cac69d242ed44da45c (diff)
downloadbusybox-w32-fd686a262fa34b71900b010b4b31d7e2e3f3385c.tar.gz
busybox-w32-fd686a262fa34b71900b010b4b31d7e2e3f3385c.tar.bz2
busybox-w32-fd686a262fa34b71900b010b4b31d7e2e3f3385c.zip
setup_environment(): eliminate one parameter
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r--libbb/setup_environment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c
index f0802f0e5..13e60d8e4 100644
--- a/libbb/setup_environment.c
+++ b/libbb/setup_environment.c
@@ -30,7 +30,7 @@
30 30
31#include "libbb.h" 31#include "libbb.h"
32 32
33void FAST_FUNC setup_environment(const char *shell, int clear_env, int flags, const struct passwd *pw) 33void FAST_FUNC setup_environment(const char *shell, int flags, const struct passwd *pw)
34{ 34{
35 /* Change the current working directory to be the home directory 35 /* Change the current working directory to be the home directory
36 * of the user */ 36 * of the user */
@@ -39,7 +39,7 @@ void FAST_FUNC setup_environment(const char *shell, int clear_env, int flags, co
39 bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir); 39 bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir);
40 } 40 }
41 41
42 if (clear_env) { 42 if (flags & SETUP_ENV_CLEARENV) {
43 const char *term; 43 const char *term;
44 44
45 /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH. 45 /* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.