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:
authorCorinna Vinschen <corinna@vinschen.de>2001-02-22 14:06:25 +0300
committerCorinna Vinschen <corinna@vinschen.de>2001-02-22 14:06:25 +0300
commit87e6b0981fb71b37e3672a728eb7961baaec9c68 (patch)
tree65ef719684c3e88821a6b27b44ebdef4b7ca883f /winsup/cygwin/path.cc
parent3a8fc0e4f13f940839c1e25818eac3f7860d3fe8 (diff)
* fhandler.cc (fhandler_disk_file::open): Use `inner_suffixes' when
resolving real_path. * path.cc (symlink): Ditto for win32_topath.
Diffstat (limited to 'winsup/cygwin/path.cc')
-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 3b2e8ad27..9183762cc 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -2297,7 +2297,7 @@ symlink (const char *topath, const char *frompath)
}
#else
create_shortcut_header ();
- path_conv win32_topath (topath, PC_SYM_NOFOLLOW);
+ path_conv win32_topath (topath, PC_SYM_NOFOLLOW, inner_suffixes);
len = strlen (topath);
unsigned short win_len = strlen (win32_topath.get_win32 ());
if (WriteFile (h, shortcut_header, SHORTCUT_HDR_SIZE, &written, NULL)