diff options
author | Roy Marples <roy@marples.name> | 2007-10-08 11:07:39 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-10-08 11:07:39 +0000 |
commit | e7dab9bb91344476603cc01a9db95c891e01085d (patch) | |
tree | 7d52e6e6b42222e67bffad0417bde1cc2b78c0a0 /src/rc.c | |
parent | 9d18c195d7c40fb1027f83edd7dbd1a16f2a9698 (diff) |
Move rc_env_filter and rc_env_config out of librc and into rc
Diffstat (limited to 'src/rc.c')
-rw-r--r-- | src/rc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -485,7 +485,7 @@ static void sulogin (bool cont) } #endif - newenv = rc_env_filter (); + newenv = env_filter (); if (cont) { int status = 0; @@ -839,8 +839,8 @@ int main (int argc, char **argv) /* Ensure our environment is pure Also, add our configuration to it */ - env = rc_env_filter (); - tmplist = rc_env_config (); + env = env_filter (); + tmplist = env_config (); rc_strlist_join (&env, tmplist); rc_strlist_free (tmplist); |