fixed perms on rsyncd log file
authorAndrew Tridgell <tridge@samba.org>
Fri, 30 Oct 1998 23:03:08 +0000 (23:03 +0000)
committerAndrew Tridgell <tridge@samba.org>
Fri, 30 Oct 1998 23:03:08 +0000 (23:03 +0000)
log.c

diff --git a/log.c b/log.c
index 30aca47..c494805 100644 (file)
--- 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;
        }