X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f31850966f7f60b8c58fa44d6948044571c060f6..e34ad4e925293ff222bb4fe47b010153fa9f30ab:/cleanup.c diff --git a/cleanup.c b/cleanup.c index e59565da..22e2e35f 100644 --- a/cleanup.c +++ b/cleanup.c @@ -27,6 +27,7 @@ extern int am_daemon; extern int io_error; extern int keep_partial; extern int got_xfer_error; +extern int output_needs_newline; extern char *partial_dir; extern char *logfile_name; @@ -104,7 +105,7 @@ NORETURN void _exit_cleanup(int code, const char *file, int line) code = exit_code; /* If this is the exit at the end of the run, the server side - * should not attempt to output a message (see log.c). */ + * should not attempt to output a message (see log_exit()). */ if (am_server && code == 0) am_server = 2; @@ -115,7 +116,12 @@ NORETURN void _exit_cleanup(int code, const char *file, int line) exit_code = unmodified_code = code; - if (verbose > 3) { + if (output_needs_newline) { + fputc('\n', stdout); + output_needs_newline = 0; + } + + if (DEBUG_GTE(EXIT, 2)) { rprintf(FINFO, "_exit_cleanup(code=%d, file=%s, line=%d): entered\n", code, file, line); @@ -178,13 +184,13 @@ NORETURN void _exit_cleanup(int code, const char *file, int line) code = exit_code = RERR_PARTIAL; } - if (code || am_daemon || (logfile_name && (am_server || !verbose))) + if (code || am_daemon || (logfile_name && (am_server || !INFO_GTE(STATS, 1)))) log_exit(code, file, line); /* FALLTHROUGH */ #include "case_N.h" - if (verbose > 2) { + if (DEBUG_GTE(EXIT, 1)) { rprintf(FINFO, "_exit_cleanup(code=%d, file=%s, line=%d): " "about to call exit(%d)\n",