* fhandler_disk_file.cc (fhandler_base::open_fs): Fix indentation.
This commit is contained in:
parent
855c9029a7
commit
d23db5c830
|
@ -1,3 +1,7 @@
|
|||
2013-08-07 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_disk_file.cc (fhandler_base::open_fs): Fix indentation.
|
||||
|
||||
2013-07-31 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||
|
||||
* fhandler_tty.cc: Revert accidental checkin.
|
||||
|
@ -19,12 +23,12 @@
|
|||
(ccalloc): Ditto.
|
||||
(ccalloc_abort): Ditto.
|
||||
|
||||
2013-07-31 Corinna Vinschen <corinna@vinschen.de>
|
||||
2013-07-31 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* path.cc (normalize_posix_path): Don't check existence of / or // dir
|
||||
in parent dir check.
|
||||
|
||||
2013-07-31 Corinna Vinschen <corinna@vinschen.de>
|
||||
2013-07-31 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* path.cc (normalize_posix_path): Don't check existence of / or // dir
|
||||
in parent dir check.
|
||||
|
|
|
@ -1486,10 +1486,10 @@ fhandler_base::open_fs (int flags, mode_t mode)
|
|||
return 0;
|
||||
}
|
||||
|
||||
ino = pc.get_ino_by_handle (get_handle ());
|
||||
/* A unique ID is necessary to recognize fhandler entries which are
|
||||
duplicated by dup(2) or fork(2). */
|
||||
NtAllocateLocallyUniqueId ((PLUID) &unique_id);
|
||||
ino = pc.get_ino_by_handle (get_handle ());
|
||||
/* A unique ID is necessary to recognize fhandler entries which are
|
||||
duplicated by dup(2) or fork(2). */
|
||||
NtAllocateLocallyUniqueId ((PLUID) &unique_id);
|
||||
|
||||
out:
|
||||
syscall_printf ("%d = fhandler_disk_file::open(%S, %y)", res,
|
||||
|
|
Loading…
Reference in New Issue