* fhandler.cc (fhandler_disk_file::open): Use `inner_suffixes' when

resolving real_path.
        * path.cc (symlink): Ditto for win32_topath.
This commit is contained in:
Corinna Vinschen
2001-02-22 11:06:25 +00:00
parent 3a8fc0e4f1
commit 87e6b0981f
3 changed files with 10 additions and 2 deletions

View File

@ -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)