X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6574b4f7d938a90a158ba31c03942f8170452df4..58da1efac1d7efb654e4bbbe697b51fb04017bc8:/rsync.c diff --git a/rsync.c b/rsync.c index 790631fe..90214a8e 100644 --- a/rsync.c +++ b/rsync.c @@ -147,7 +147,6 @@ static struct sum_struct *receive_sums(int f) struct sum_struct *s; int i; off_t offset = 0; - int block_len; s = (struct sum_struct *)malloc(sizeof(*s)); if (!s) out_of_memory("receive_sums"); @@ -161,8 +160,6 @@ static struct sum_struct *receive_sums(int f) fprintf(FERROR,"count=%d n=%d rem=%d\n", s->count,s->n,s->remainder); - block_len = s->n; - if (s->count == 0) return(s);