aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-01-10 21:24:04 +0000
committerChristopher Faylor <me@cgf.cx>2003-01-10 21:24:04 +0000
commite3abf9861a771294d6e9c2c22c8fb6586ca84bc9 (patch)
treed7200ae3c1879e9416b25a95393177b205fcc41e
parentdf2caa88ca470c5acb41244fcf6e51fd4dae45c8 (diff)
downloadnewlib-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.zip
newlib-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.tar.gz
newlib-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.tar.bz2
* path.cc: Unrevert below reversion except for mount_info::conv_to_posix_path
part.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/path.cc5
2 files changed, 6 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 2404a08..5110a81 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2003-01-10 Christopher Faylor <cgf@redhat.com>
+
+ * path.cc: Unrevert below reversion except for
+ mount_info::conv_to_posix_path part.
+
2003-01-10 Corinna Vinschen <corinna@vinschen.de>
* path.cc: Revert patch from 2003-01-09 to normalize a windows path
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 61d446b..fddcbea 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -205,10 +205,7 @@ normalize_posix_path (const char *src, char *dst)
syscall_printf ("src %s", src);
if (isdrive (src) || strpbrk (src, "\\:"))
- {
- cygwin_conv_to_full_posix_path (src, dst);
- return 0;
- }
+ return normalize_win32_path (src, dst);
if (!isslash (src[0]))
{