From ec7a44920791ea14b9eb51468503285eaf116c8a Mon Sep 17 00:00:00 2001 From: stefanf Date: Mon, 12 Jun 2006 21:06:00 +0000 Subject: Don't strip a leading ./ from the path for the cd builtin to avoid interpreting .//dir as /dir. Rather strip it only for the purpose of checking if the directory path should be printed. PR: 88813 Submitted by: Josh Elsasser Patch from: NetBSD (cd.c rev 1.38) MFC after: 2 weeks --- bin/sh/cd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'bin/sh') diff --git a/bin/sh/cd.c b/bin/sh/cd.c index 24af3e1..d52c9b8 100644 --- a/bin/sh/cd.c +++ b/bin/sh/cd.c @@ -124,8 +124,9 @@ cdcmd(int argc, char **argv) * XXX - rethink */ if (p[0] == '.' && p[1] == '/' && p[2] != '\0') - p += 2; - print = strcmp(p, dest); + print = strcmp(p + 2, dest); + else + print = strcmp(p, dest); } if (docd(p, print, phys) >= 0) return 0; -- cgit v1.1