diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/security.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 8e4825975..71ea85ae3 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2011-07-05 Corinna Vinschen <corinna@vinschen.de> + * security.cc (get_file_sd): Fix comment. + +2011-07-05 Corinna Vinschen <corinna@vinschen.de> + * fhandler.cc (fhandler_base::open): Never create files with WRITE_DAC access. Explain why. * fhandler_disk_file.cc (fhandler_base::fstat_helper): Improve debug diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc index 8151c285e..ffa70f4ab 100644 --- a/winsup/cygwin/security.cc +++ b/winsup/cygwin/security.cc @@ -117,7 +117,7 @@ get_file_sd (HANDLE fh, path_conv &pc, security_descriptor &sd, directories' SD used NtQuerySecurityObject, rather than GetSecurityInfo as well. See http://cygwin.com/ml/cygwin-developers/2011-03/msg00027.html for the solution. This problem does not occur with the below code, so - the workaround could be removed. */ + the workaround has been removed. */ if (justcreated) { SECURITY_DESCRIPTOR_CONTROL ctrl; |