# HG changeset patch # User Yuya Nishihara # Date 1508934001 -32400 # Node ID bfcd0d22797222a09db45fb2ae84fdcf0bf462b9 # Parent a6a322193a0227629dec874801b0a013274e0ca3 server: drop executable bit from daemon log file The logfile option was unused, so it was okay until now. diff -r a6a322193a02 -r bfcd0d227972 mercurial/server.py --- a/mercurial/server.py Mon Oct 23 22:13:59 2017 -0500 +++ b/mercurial/server.py Wed Oct 25 21:20:01 2017 +0900 @@ -93,7 +93,8 @@ nullfd = os.open(os.devnull, os.O_RDWR) logfilefd = nullfd if logfile: - logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND) + logfilefd = os.open(logfile, os.O_RDWR | os.O_CREAT | os.O_APPEND, + 0o666) os.dup2(nullfd, 0) os.dup2(logfilefd, 1) os.dup2(logfilefd, 2)