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:
authorDJ Delorie <dj@redhat.com>2000-05-02 19:42:30 +0400
committerDJ Delorie <dj@redhat.com>2000-05-02 19:42:30 +0400
commit523ebbe0876274710c90bed67cf6b9f990d519f4 (patch)
tree53af53be47d82bbecfe3b72a586836cb2b0580ba
parentdd67f9db6acdf49cafac5f628fc942ceca215b04 (diff)
* path.cc (mount_info::conv_to_win32_path): Previous patch
failed to set flags on a win32 path.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/path.cc2
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 7d2196b06..9c7cd2654 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-02 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
+
+ * path.cc (mount_info::conv_to_win32_path): Previous patch
+ failed to set flags on a win32 path.
+
Tue May 2 11:34:00 2000 Corinna Vinschen <corinna@vinschen.de>
* security.cc (read_sd): Return 1 on success because we
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 5a05a2fa1..c9f9b4af4 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -949,7 +949,7 @@ mount_info::conv_to_win32_path (const char *src_path, char *win32_path,
return rc;
}
isrelpath = !isabspath (src_path);
- *flags = set_flags_from_win32_path (pathbuf);
+ *flags = set_flags_from_win32_path (dst);
goto fillin;
}