summaryrefslogtreecommitdiff
path: root/shell/msh.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-12 22:35:19 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-12 22:35:19 +0000
commitf5f75c5e82d47613847c356664e47c4be69e73aa (patch)
treee71a09d744a9db75a1cbe6cb73d55e71a435e7d1 /shell/msh.c
parentf312e32662f6d98f86c68d8f781b3255547f8200 (diff)
downloadbusybox-w32-f5f75c5e82d47613847c356664e47c4be69e73aa.tar.gz
busybox-w32-f5f75c5e82d47613847c356664e47c4be69e73aa.tar.bz2
busybox-w32-f5f75c5e82d47613847c356664e47c4be69e73aa.zip
remove nearly-duplicate PATHs in several places
function old new delta bb_PATH_root_path - 35 +35 varunset 60 58 -2 arith 2042 2033 -9 bb_default_root_login_path 30 - -30 .rodata 128794 128762 -32 which_main 152 117 -35 defpathvar 40 - -40 ------------------------------------------------------------------------------ (add/remove: 1/2 grow/shrink: 0/4 up/down: 35/-148) Total: -113 bytes
Diffstat (limited to 'shell/msh.c')
-rw-r--r--shell/msh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c
index 2ee5256f7..dc2fa9c16 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -5213,9 +5213,9 @@ int msh_main(int argc, char **argv)
5213 if (path->value == null) { 5213 if (path->value == null) {
5214 /* Can be merged with same string elsewhere in bbox */ 5214 /* Can be merged with same string elsewhere in bbox */
5215 if (geteuid() == 0) 5215 if (geteuid() == 0)
5216 setval(path, bb_default_root_login_path); 5216 setval(path, bb_default_root_path);
5217 else 5217 else
5218 setval(path, bb_default_login_path); 5218 setval(path, bb_default_path);
5219 } 5219 }
5220 export(path); 5220 export(path);
5221 5221