aboutsummaryrefslogtreecommitdiff
path: root/src/rc.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-10-08 11:07:39 +0000
committerRoy Marples <roy@marples.name>2007-10-08 11:07:39 +0000
commite7dab9bb91344476603cc01a9db95c891e01085d (patch)
tree7d52e6e6b42222e67bffad0417bde1cc2b78c0a0 /src/rc.c
parent9d18c195d7c40fb1027f83edd7dbd1a16f2a9698 (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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rc.c b/src/rc.c
index aa3e4373..c71284da 100644
--- a/src/rc.c
+++ b/src/rc.c
@@ -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);