diff options
author | Christopher Faylor <me@cgf.cx> | 2003-01-10 21:24:04 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-01-10 21:24:04 +0000 |
commit | e3abf9861a771294d6e9c2c22c8fb6586ca84bc9 (patch) | |
tree | d7200ae3c1879e9416b25a95393177b205fcc41e /winsup/cygwin/path.cc | |
parent | df2caa88ca470c5acb41244fcf6e51fd4dae45c8 (diff) | |
download | cygnal-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.tar.gz cygnal-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.tar.bz2 cygnal-e3abf9861a771294d6e9c2c22c8fb6586ca84bc9.zip |
* path.cc: Unrevert below reversion except for mount_info::conv_to_posix_path
part.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index 61d446b21..fddcbea3b 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])) { |