X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/427b6179b9c90e5aed4435f8405f4718ff32f90c..7cfb250c9362666a51f436008d573e90a5d52def:/log.c diff --git a/log.c b/log.c index af097122..dad939b1 100644 --- a/log.c +++ b/log.c @@ -467,8 +467,8 @@ static void log_formatted(enum logcode code, char *format, char *op, case 'M': n = timestring(file->modtime); { - char *cp = strchr(n, ' '); - if (cp) + char *cp; + while ((cp = strchr(n, ' ')) != NULL) *cp = '-'; } break; @@ -733,11 +733,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)\n", - name, code, file, line); + rprintf(FINFO, "rsync warning: %s (code %d) at %s(%d) [%s]\n", + name, code, file, line, who_am_i()); } else { - rprintf(FERROR, "rsync error: %s (code %d) at %s(%d)\n", - name, code, file, line); + rprintf(FERROR, "rsync error: %s (code %d) at %s(%d) [%s]\n", + name, code, file, line, who_am_i()); } } }