setup_environment(): eliminate one parameter

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2010-02-26 09:52:45 +01:00
parent 99709ab033
commit fd686a262f
5 changed files with 16 additions and 11 deletions

View File

@ -30,7 +30,7 @@
#include "libbb.h"
void FAST_FUNC setup_environment(const char *shell, int clear_env, int flags, const struct passwd *pw)
void FAST_FUNC setup_environment(const char *shell, int flags, const struct passwd *pw)
{
/* Change the current working directory to be the home directory
* of the user */
@ -39,7 +39,7 @@ void FAST_FUNC setup_environment(const char *shell, int clear_env, int flags, co
bb_error_msg("can't chdir to home directory '%s'", pw->pw_dir);
}
if (clear_env) {
if (flags & SETUP_ENV_CLEARENV) {
const char *term;
/* Leave TERM unchanged. Set HOME, SHELL, USER, LOGNAME, PATH.