diff options
author | Rob Landley | 2005-05-03 03:28:55 +0000 |
---|---|---|
committer | Rob Landley | 2005-05-03 03:28:55 +0000 |
commit | e3752e56a43a823f4aaaa9a4374ccc367417b942 (patch) | |
tree | b954cd7801fd3a30f8a5231ee0106c8db11da568 /libbb | |
parent | 8445a9ff99f04cad8845a1aed6ab17737f2d985a (diff) | |
download | busybox-e3752e56a43a823f4aaaa9a4374ccc367417b942.zip busybox-e3752e56a43a823f4aaaa9a4374ccc367417b942.tar.gz |
Revert Tito's patch to zcip. My bad, David Brownell had objected and I missed
it...
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/setup_environment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/setup_environment.c b/libbb/setup_environment.c index 046ecea..aeb285a 100644 --- a/libbb/setup_environment.c +++ b/libbb/setup_environment.c @@ -42,7 +42,7 @@ #define DEFAULT_LOGIN_PATH "/bin:/usr/bin" #define DEFAULT_ROOT_LOGIN_PATH "/usr/sbin:/bin:/usr/bin:/sbin" -void xsetenv ( const char *key, const char *value ) +static void xsetenv ( const char *key, const char *value ) { if ( setenv ( key, value, 1 )) bb_error_msg_and_die (bb_msg_memory_exhausted); |