Man page: Move the description of --info=progress2 to a better place.
[rsync/rsync.git] / token.c
diff --git a/token.c b/token.c
index be882e9..75d2b17 100644 (file)
--- a/token.c
+++ b/token.c
@@ -192,6 +192,8 @@ void set_compression(const char *fname)
                return;
 
        while (1) {
+               if (isUpper(&ltr))
+                       ltr = toLower(&ltr);
                while (node->letter != ltr) {
                        if (node->letter > ltr)
                                return;
@@ -598,7 +600,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);
                }