From 8d8b9c3817eb4f7652edea01bba5838cf8a14899 Mon Sep 17 00:00:00 2001 From: knu Date: Wed, 19 Feb 2003 08:44:58 +0000 Subject: Add a patch to fix a glob expansion problem where special character escaping does not work. --- shells/fd/files/patch-pathname.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shells/fd/files/patch-pathname.c (limited to 'shells/fd') diff --git a/shells/fd/files/patch-pathname.c b/shells/fd/files/patch-pathname.c new file mode 100644 index 000000000000..d0c06faa67ae --- /dev/null +++ b/shells/fd/files/patch-pathname.c @@ -0,0 +1,13 @@ +Taken from: [FDclone-users:00108] +diff -u old/pathname.c ./pathname.c +--- old/pathname.c Wed Dec 25 00:00:00 2002 ++++ ./pathname.c Sun Feb 16 10:18:00 2003 +@@ -1173,7 +1173,7 @@ + else paren[plen++] = toupper2(s[i]); + } + } +- else if (!quote) switch (s[i]) { ++ else if (!quote && !metachar) switch (s[i]) { + case '?': + cp = wildsymbol1; + break; -- cgit