From 6265551a5a820b99e0b8a1ea5910fa013f93f9aa Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 30 Oct 1998 23:03:08 +0000 Subject: [PATCH] fixed perms on rsyncd log file --- log.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log.c b/log.c index 30aca47e..c494805d 100644 --- a/log.c +++ b/log.c @@ -78,7 +78,9 @@ void log_open(void) /* optionally use a log file instead of syslog */ logf = lp_log_file(); if (logf && *logf) { + int old_umask = umask(077); logfile = fopen(logf, "a"); + umask(old_umask); return; } -- 2.34.1