aboutsummaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2000-06-08 20:51:11 +0000
committerCorinna Vinschen <corinna@vinschen.de>2000-06-08 20:51:11 +0000
commitaf76c2eed1153665f18e829be5d63794218ecf7d (patch)
treeb04f326858eb07891ace5e6b14286486d0e1afdc /winsup
parentb8a7c23a2a0b89aa703a457c285785d2529af666 (diff)
downloadnewlib-af76c2eed1153665f18e829be5d63794218ecf7d.zip
newlib-af76c2eed1153665f18e829be5d63794218ecf7d.tar.gz
newlib-af76c2eed1153665f18e829be5d63794218ecf7d.tar.bz2
* path.cc (path_conv::check): Erase two lines checked in
by mistake.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/path.cc2
2 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 84eb720..cdab852 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+Thu Jun 8 22:49:00 2000 Corinna Vinschen <corinna@vinschen.de>
+
+ * path.cc (path_conv::check): Erase two lines checked in
+ by mistake.
+
Thu Jun 8 15:53:00 2000 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_disk_file::open): Check for directory
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 675b61c..948d793 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -386,14 +386,12 @@ out:
debug_printf ("GetVolumeInformation(%s) = ERR, full_path(%s), set_has_acls(FALSE)",
tmp_buf, full_path, GetLastError ());
set_has_acls (FALSE);
- set_has_reparse_points (FALSE);
}
else
{
debug_printf ("GetVolumeInformation(%s) = OK, full_path(%s), set_has_acls(%d)",
tmp_buf, full_path, volflags & FS_PERSISTENT_ACLS);
set_has_acls (volflags & FS_PERSISTENT_ACLS);
- set_has_reparse_points (volflags & FILE_SUPPORTS_REPARSE_POINTS);
}
}