* path.cc (path_conv::check): Erase two lines checked in

by mistake.
This commit is contained in:
Corinna Vinschen 2000-06-08 20:51:11 +00:00
parent b8a7c23a2a
commit af76c2eed1
2 changed files with 5 additions and 2 deletions

View File

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

View File

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