* syscalls.cc (faccessat): Fix parens in flag expression when calling

build_fh_name.

	* fhandler_disk_file.cc (fhandler_disk_file::mkdir): Fix typo in
	comment.
	* fhandler_socket.cc (fhandler_socket::bind): Ditto.
	* path.cc (symlink_worker): Ditto.
This commit is contained in:
Corinna Vinschen
2011-08-01 17:01:38 +00:00
parent ab0887572f
commit d32e0bfc08
5 changed files with 18 additions and 8 deletions

View File

@ -956,7 +956,7 @@ fhandler_socket::bind (const struct sockaddr *name, int namelen)
open the file again.
FIXME: On remote NTFS shares open sometimes fails because even the
creator of the file doesn't have the right to change the DACL.
I don't know what setting that is or howq to recognize such a share,
I don't know what setting that is or how to recognize such a share,
so for now we don't request WRITE_DAC on remote drives. */
if (pc.has_acls () && !pc.isremote ())
access |= READ_CONTROL | WRITE_DAC;