diff options
author | Roy Marples <roy@marples.name> | 2007-10-03 14:48:50 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-10-03 14:48:50 +0000 |
commit | 6d5ac5716b96c42dc95a21a4d246377f906d365e (patch) | |
tree | adc7d0dc3abad53983c93b93f43e63b3ee60724a /src/rc.c | |
parent | a47070071017722d921ff3e8aa357d36f4f7a446 (diff) |
rc_make_env -> rc_env_config, rc_filter_env -> rc_env_filter
Diffstat (limited to 'src/rc.c')
-rw-r--r-- | src/rc.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -486,7 +486,7 @@ static void sulogin (bool cont) } #endif - newenv = rc_filter_env (); + newenv = rc_env_filter (); if (cont) { int status = 0; @@ -823,8 +823,8 @@ int main (int argc, char **argv) /* Ensure our environment is pure Also, add our configuration to it */ - env = rc_filter_env (); - tmplist = rc_make_env (); + env = rc_env_filter (); + tmplist = rc_env_config (); rc_strlist_join (&env, tmplist); rc_strlist_free (tmplist); |