Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-04 19:20:30 +0300
committerChristopher Faylor <me@cgf.cx>2006-01-04 19:20:30 +0300
commit01b76355387f7b83fd2414da8f80d1891a99fc08 (patch)
tree03a67459304ff104210a76b181342e491913a0b4 /winsup
parente3c08f94a01ad50d38cc199d1c00212ae090805d (diff)
* path.cc (dot_special_chars): Add ", <, >, and |.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/path.cc6
2 files changed, 7 insertions, 3 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index bee8e260b..bbfcebb65 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-04 Eric Blake <ebb9@byu.net>
+
+ * path.cc (dot_special_chars): Add ", <, >, and |.
+
2006-01-03 Christopher Faylor <cgf@timesys.com>
* fhandler_console.cc (beep): Use MB_OK which is documented as using
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 8fc616ef4..fdba25400 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -1,6 +1,6 @@
/* path.cc: path support.
- Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Red Hat, Inc.
+ Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc.
This file is part of Cygwin.
@@ -1329,8 +1329,8 @@ static char dot_special_chars[] =
"\001" "\002" "\003" "\004" "\005" "\006" "\007" "\010"
"\011" "\012" "\013" "\014" "\015" "\016" "\017" "\020"
"\021" "\022" "\023" "\024" "\025" "\026" "\027" "\030"
- "\031" "\032" "\033" "\034" "\035" "\036" "\037"
- ":" "\\" "*" "?" "%"
+ "\031" "\032" "\033" "\034" "\035" "\036" "\037" ":"
+ "\\" "*" "?" "%" "\"" "<" ">" "|"
"A" "B" "C" "D" "E" "F" "G" "H"
"I" "J" "K" "L" "M" "N" "O" "P"
"Q" "R" "S" "T" "U" "V" "W" "X"