If there is no lchown(), don't try to set the user & group of a symlink.
[rsync/rsync.git] / token.c
diff --git a/token.c b/token.c
index 862af0f..8ba32b9 100644 (file)
--- a/token.c
+++ b/token.c
@@ -264,17 +264,14 @@ send_deflated_token(int f, int token, struct map_struct *buf, OFF_T offset,
                   history and hash table */
                tx_strm.next_in = (Bytef *) map_ptr(buf, offset, toklen);
                tx_strm.avail_in = toklen;
-               do {
-                       tx_strm.next_out = (Bytef *)obuf;
-                       tx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE);
-                       r = deflate(&tx_strm, Z_INSERT_ONLY);
-                       if (r != Z_OK) {
-                               rprintf(FERROR,
-                                       "deflate on token returned %d (%d bytes left)\n",
-                                       r, tx_strm.avail_in);
-                               exit_cleanup(RERR_STREAMIO);
-                       }
-               } while (tx_strm.avail_in != 0);
+               tx_strm.next_out = (Bytef *) obuf;
+               tx_strm.avail_out = AVAIL_OUT_SIZE(CHUNK_SIZE);
+               r = deflate(&tx_strm, Z_INSERT_ONLY);
+               if (r != Z_OK || tx_strm.avail_in != 0) {
+                       rprintf(FERROR, "deflate on token returned %d (%d bytes left)\n",
+                               r, tx_strm.avail_in);
+                       exit_cleanup(RERR_STREAMIO);
+               }
        }
 }