summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-02-24 01:56:26 +0000
committerWayne Davison <wayned@samba.org>2006-02-24 01:56:26 +0000
commitc5b7aa153235d39720d80c3e7e700d83e9ff2e91 (patch)
tree9278cbb593b37dbe9a9dd9aa58588820a1de7f50 /log.c
parent904e5af12874694c47b7ccf7b8b2e6aa883cab0f (diff)
downloadrsync-c5b7aa153235d39720d80c3e7e700d83e9ff2e91.tar.gz
rsync-c5b7aa153235d39720d80c3e7e700d83e9ff2e91.tar.bz2
rsync-c5b7aa153235d39720d80c3e7e700d83e9ff2e91.zip
The orig_umask value is now a mode_t.
Diffstat (limited to 'log.c')
-rw-r--r--log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/log.c b/log.c
index 77ce6d18..034aaccb 100644
--- a/log.c
+++ b/log.c
@@ -39,13 +39,13 @@ extern int local_server;
extern int quiet;
extern int module_id;
extern int msg_fd_out;
-extern int orig_umask;
extern int allow_8bit_chars;
extern int protocol_version;
extern int preserve_times;
extern int log_format_has_i;
extern int log_format_has_o_or_i;
extern int daemon_log_format_has_o_or_i;
+extern mode_t orig_umask;
extern char *auth_user;
extern char *log_format;
#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H
@@ -144,7 +144,7 @@ static void syslog_init()
static void logfile_open(void)
{
- int old_umask = umask(022 | orig_umask);
+ mode_t old_umask = umask(022 | orig_umask);
logfile = fopen(logfname, "a");
umask(old_umask);
if (!logfile) {