aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 00:34:54 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-10 19:46:35 +1000
commitac30d16aa3780ced891b7cec3d1fabf9fc78cc7d (patch)
tree1b5797cb44c2f3fbec168b7db2fd19db3f079402
parent7ed8528562d4b034f582afe0c0e2490303d0e6a2 (diff)
downloadbusybox-w32-ac30d16aa3780ced891b7cec3d1fabf9fc78cc7d.tar.gz
busybox-w32-ac30d16aa3780ced891b7cec3d1fabf9fc78cc7d.tar.bz2
busybox-w32-ac30d16aa3780ced891b7cec3d1fabf9fc78cc7d.zip
win32: ash: is_absolute_path()
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index bfbd6a027..05ca74579 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -2527,7 +2527,7 @@ cdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
2527 } 2527 }
2528 if (!dest) 2528 if (!dest)
2529 dest = nullstr; 2529 dest = nullstr;
2530 if (*dest == '/') 2530 if (is_absolute_path(dest))
2531 goto step7; 2531 goto step7;
2532 if (*dest == '.') { 2532 if (*dest == '.') {
2533 c = dest[1]; 2533 c = dest[1];
@@ -12213,7 +12213,7 @@ find_command(char *name, struct cmdentry *entry, int act, const char *path)
12213 } 12213 }
12214 } 12214 }
12215 /* if rehash, don't redo absolute path names */ 12215 /* if rehash, don't redo absolute path names */
12216 if (fullname[0] == '/' && idx <= prev) { 12216 if (is_absolute_path(fullname) && idx <= prev) {
12217 if (idx < prev) 12217 if (idx < prev)
12218 continue; 12218 continue;
12219 TRACE(("searchexec \"%s\": no change\n", name)); 12219 TRACE(("searchexec \"%s\": no change\n", name));