summaryrefslogtreecommitdiff
path: root/cleanup.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-09-15 15:30:45 +0000
committerWayne Davison <wayned@samba.org>2007-09-15 15:30:45 +0000
commit969cdffbeaaa32e4ef2ef90862b46f686856b042 (patch)
tree6dd2d94b4aed1e16238962c2a9b5fcbd2b79fd4c /cleanup.c
parent3b7bcaaf3477be6a50fde54e06b80c9a5e698bd9 (diff)
downloadrsync-969cdffbeaaa32e4ef2ef90862b46f686856b042.tar.gz
rsync-969cdffbeaaa32e4ef2ef90862b46f686856b042.tar.bz2
rsync-969cdffbeaaa32e4ef2ef90862b46f686856b042.zip
Prevent a server from outputting an end-of-run message about its
error-code that cannot be sent successfully.
Diffstat (limited to 'cleanup.c')
-rw-r--r--cleanup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/cleanup.c b/cleanup.c
index d35d77af..a6a90238 100644
--- a/cleanup.c
+++ b/cleanup.c
@@ -103,6 +103,11 @@ NORETURN void _exit_cleanup(int code, const char *file, int line)
if (exit_code) /* Preserve first error code when recursing. */
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). */
+ if (am_server && code == 0)
+ am_server = 2;
+
/* Some of our actions might cause a recursive call back here, so we
* keep track of where we are in the cleanup and never repeat a step. */
switch (cleanup_step) {