X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4875d6b64dd0ed8d451746cc0cc609cff36192bd..87a57a3072c0fe742b154bd62869cc08c65625bb:/cleanup.c diff --git a/cleanup.c b/cleanup.c index d183c9d1..78c048a4 100644 --- a/cleanup.c +++ b/cleanup.c @@ -136,10 +136,12 @@ void _exit_cleanup(int code, const char *file, int line) } if (code == 0) { - if ((io_error & ~IOERR_VANISHED) || log_got_error) - code = RERR_PARTIAL; - else if (io_error) + if (io_error & IOERR_DEL_LIMIT) + code = RERR_DEL_LIMIT; + if (io_error & IOERR_VANISHED) code = RERR_VANISHED; + if (io_error & IOERR_GENERAL || log_got_error) + code = RERR_PARTIAL; } if (code)