X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e4c598c830234fe3def0bae6ba45ca54071a9ee5..9a54a640f74dcaeb03ef99799a5320b3eb77f7ec:/token.c diff --git a/token.c b/token.c index be882e9f..abc0ef5e 100644 --- a/token.c +++ b/token.c @@ -598,7 +598,7 @@ static void see_deflate_token(char *buf, int32 len) rx_strm.next_out = (Bytef *)dbuf; rx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE); r = inflate(&rx_strm, Z_SYNC_FLUSH); - if (r != Z_OK) { + if (r != Z_OK && r != Z_BUF_ERROR) { rprintf(FERROR, "inflate (token) returned %d\n", r); exit_cleanup(RERR_STREAMIO); }