* fhandler.cc (fhandler_base::open): Remove unused variables sa and sd.

This commit is contained in:
Corinna Vinschen 2009-10-24 08:40:15 +00:00
parent 1647bf67c1
commit e83fef9d35
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2009-10-24 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::open): Remove unused variables sa and sd.
2009-10-23 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::open): Always create file with default

View File

@ -461,8 +461,6 @@ fhandler_base::open (int flags, mode_t mode)
ULONG shared = (get_major () == DEV_TAPE_MAJOR ? 0 : FILE_SHARE_VALID_FLAGS);
ULONG create_disposition;
ULONG create_options = FILE_OPEN_FOR_BACKUP_INTENT;
SECURITY_ATTRIBUTES sa = sec_none;
security_descriptor sd;
OBJECT_ATTRIBUTES attr;
IO_STATUS_BLOCK io;
NTSTATUS status;
@ -471,7 +469,7 @@ fhandler_base::open (int flags, mode_t mode)
syscall_printf ("(%S, %p)", pc.get_nt_native_path (), flags);
pc.get_object_attr (attr, sa);
pc.get_object_attr (attr, sec_none);
switch (query_open ())
{