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>2000-06-16 00:52:57 +0400
committerChristopher Faylor <me@cgf.cx>2000-06-16 00:52:57 +0400
commit26cfd048e313f30904362d3d7fc5c11d2bf88c8c (patch)
treef369de812eda7201f4fcd6342bcc105b82bc8409 /winsup
parentf055d446ffceb9edadf7229ec03e6d69ad5986d8 (diff)
Fix typo.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index d9b21ebac..a74aa0829 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -556,7 +556,7 @@ normalize_posix_path (const char *cwd, const char *src, char *dst)
char *dst_start = dst;
syscall_printf ("cwd %s, src %s", cwd, src);
- if (isdrive (src) || strpbrk (src, "\\:/"))
+ if (isdrive (src) || strpbrk (src, "\\:"))
{
cygwin_conv_to_full_posix_path (src, dst);
return 0;