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
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-12-05 07:33:40 +0300
committerChristopher Faylor <me@cgf.cx>2003-12-05 07:33:40 +0300
commit78f3155cedd30008952ff9e2c3c8176775ec4890 (patch)
tree23bde970676e8cf391776fd3779ce3a4bd69b2d5 /winsup/cygwin
parent57e6aca6677838a2fcaaad3785ba8629821c5bd0 (diff)
* path.cc (slash_unc_prefix_p): Allow '.' as a valid character after '\\' in a
UNC path.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/path.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 893d59489..08445e463 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,5 +1,10 @@
2003-12-04 Christopher Faylor <cgf@redhat.com>
+ * path.cc (slash_unc_prefix_p): Allow '.' as a valid character after
+ '\\' in a UNC path.
+
+2003-12-04 Christopher Faylor <cgf@redhat.com>
+
* exceptions.cc (setup_handler): Remove ill-advised debugging output.
2003-12-04 Corinna Vinschen <corinna@vinschen.de>
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index ea8009af0..a88ad6fc1 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -1076,7 +1076,7 @@ slash_unc_prefix_p (const char *path)
char *p = NULL;
int ret = (isdirsep (path[0])
&& isdirsep (path[1])
- && isalnum (path[2])
+ && (isalnum (path[2]) || path[2] == '.')
&& ((p = strpbrk (path + 3, "\\/")) != NULL));
if (!ret || p == NULL)
return ret;