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/fhandler.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/fhandler.cc')
-rw-r--r--winsup/cygwin/fhandler.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.cc b/winsup/cygwin/fhandler.cc
index 40aa50849..b7ec79b34 100644
--- a/winsup/cygwin/fhandler.cc
+++ b/winsup/cygwin/fhandler.cc
@@ -1199,11 +1199,13 @@ fhandler_disk_file::fhandler_disk_file (const char *name) :
int
fhandler_disk_file::open (const char *path, int flags, mode_t mode)
{
+ extern suffix_info inner_suffixes[];
+
syscall_printf ("(%s, %p)", path, flags);
/* O_NOSYMLINK is an internal flag for implementing lstat, nothing more. */
path_conv real_path (path, (flags & O_NOSYMLINK) ?
- PC_SYM_NOFOLLOW : PC_SYM_FOLLOW);
+ PC_SYM_NOFOLLOW : PC_SYM_FOLLOW, inner_suffixes);
if (real_path.error &&
(flags & O_NOSYMLINK || real_path.error != ENOENT || !(flags & O_CREAT)))