From 9d86c13dbb5647d22f16a4baec38b2a27e75fddf Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 4 May 2009 09:16:42 +0000 Subject: * security.cc (set_file_sd): Drop using FILE_OPEN_FOR_RECOVERY flag in call to NtOpenFile. * exceptions.cc (open_stackdumpfile): Ditto in call to NtCreateFile. * fhandler.cc (fhandler_base::open): Ditto. Simplify setting create_options. * mount.cc (fs_info::update): Recognize offline storage. (fillout_mntent): Report UDF and offline storage. * mount.h (class fs_info): Add is_csc_cache status flag. --- winsup/cygwin/exceptions.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'winsup/cygwin/exceptions.cc') diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 6a468cf80..eeed74930 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -160,8 +160,7 @@ open_stackdumpfile () status = NtCreateFile (&h, GENERIC_WRITE | SYNCHRONIZE, &attr, &io, NULL, FILE_ATTRIBUTE_NORMAL, 0, FILE_OVERWRITE_IF, FILE_SYNCHRONOUS_IO_NONALERT - | FILE_OPEN_FOR_BACKUP_INTENT - | FILE_OPEN_FOR_RECOVERY, NULL, 0); + | FILE_OPEN_FOR_BACKUP_INTENT, NULL, 0); if (NT_SUCCESS (status)) { if (!myself->cygstarted) -- cgit v1.2.3