summaryrefslogtreecommitdiff
path: root/token.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2009-12-21 10:13:52 -0800
committerWayne Davison <wayned@samba.org>2009-12-21 10:15:13 -0800
commit4286ea6036efbe36b53229f209ed8614bd55b2e1 (patch)
tree98f0fd85f3766cf67b0ef939ce0f3f649f6d4657 /token.c
parent626b5ae839d240987059644321d38c963bd5a794 (diff)
downloadrsync-4286ea6036efbe36b53229f209ed8614bd55b2e1.tar.gz
Don't die if inflate() returns Z_BUF_ERROR in see_deflate_token().
Diffstat (limited to 'token.c')
-rw-r--r--token.c2
1 files changed, 1 insertions, 1 deletions
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);
}