diff options
author | Christopher Faylor <me@cgf.cx> | 2000-06-15 20:52:57 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-06-15 20:52:57 +0000 |
commit | 26cfd048e313f30904362d3d7fc5c11d2bf88c8c (patch) | |
tree | f369de812eda7201f4fcd6342bcc105b82bc8409 /winsup/cygwin/path.cc | |
parent | f055d446ffceb9edadf7229ec03e6d69ad5986d8 (diff) | |
download | newlib-26cfd048e313f30904362d3d7fc5c11d2bf88c8c.zip newlib-26cfd048e313f30904362d3d7fc5c11d2bf88c8c.tar.gz newlib-26cfd048e313f30904362d3d7fc5c11d2bf88c8c.tar.bz2 |
Fix typo.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index d9b21eb..a74aa08 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; |