Tweaked some whitespace to match the latest version from autoconf.
[rsync/rsync.git] / log.c
diff --git a/log.c b/log.c
index 743cf93..135a57a 100644 (file)
--- a/log.c
+++ b/log.c
@@ -45,6 +45,7 @@ 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
@@ -143,8 +144,7 @@ static void syslog_init()
 
 static void logfile_open(void)
 {
-       extern int orig_umask;
-       int old_umask = umask(022 | orig_umask);
+       mode_t old_umask = umask(022 | orig_umask);
        logfile = fopen(logfname, "a");
        umask(old_umask);
        if (!logfile) {
@@ -608,7 +608,8 @@ static void log_formatted(enum logcode code, char *format, char *op,
                        n[5] = !(iflags & ITEM_REPORT_PERMS) ? '.' : 'p';
                        n[6] = !(iflags & ITEM_REPORT_OWNER) ? '.' : 'o';
                        n[7] = !(iflags & ITEM_REPORT_GROUP) ? '.' : 'g';
-                       n[8] = '\0';
+                       n[8] = '.';
+                       n[9] = '\0';
 
                        if (iflags & (ITEM_IS_NEW|ITEM_MISSING_DATA)) {
                                char ch = iflags & ITEM_IS_NEW ? '+' : '?';
@@ -768,11 +769,11 @@ void log_exit(int code, const char *file, int line)
 
                /* VANISHED is not an error, only a warning */
                if (code == RERR_VANISHED) {
-                       rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d) [%s]\n", 
-                               name, code, file, line, who_am_i());
+                       rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d) [%s=%s]\n", 
+                               name, code, file, line, who_am_i(), RSYNC_VERSION);
                } else {
-                       rprintf(FERROR, "rsync error: %s (code %d) at %s(%d) [%s]\n",
-                               name, code, file, line, who_am_i());
+                       rprintf(FERROR, "rsync error: %s (code %d) at %s(%d) [%s=%s]\n",
+                               name, code, file, line, who_am_i(), RSYNC_VERSION);
                }
        }
 }