aboutsummaryrefslogtreecommitdiffstats
path: root/sender.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2008-07-20 20:02:09 -0700
committerWayne Davison <wayned@samba.org>2008-07-20 20:02:09 -0700
commit5a18b34de343eca4b5537443e9bb207d91524d7e (patch)
treeae851a1ac483d260dad1f829ce717ba7143f9f28 /sender.c
parent56ac812359d7dda201fa5a3399bb60bc4bfbbbc2 (diff)
downloadandroid_external_rsync-5a18b34de343eca4b5537443e9bb207d91524d7e.tar.gz
android_external_rsync-5a18b34de343eca4b5537443e9bb207d91524d7e.tar.bz2
android_external_rsync-5a18b34de343eca4b5537443e9bb207d91524d7e.zip
Changed the chksum debug flag to deltasum.
Diffstat (limited to 'sender.c')
-rw-r--r--sender.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sender.c b/sender.c
index 6c03f1c1..9c550e96 100644
--- a/sender.c
+++ b/sender.c
@@ -69,7 +69,7 @@ static struct sum_struct *receive_sums(int f)
s->sums = NULL;
- if (DEBUG_GTE(CHKSUM, 3)) {
+ if (DEBUG_GTE(DELTASUM, 3)) {
rprintf(FINFO, "count=%s n=%ld rem=%ld\n",
big_num(s->count, 0), (long)s->blength, (long)s->remainder);
}
@@ -103,7 +103,7 @@ static struct sum_struct *receive_sums(int f)
if (allowed_lull && !(i % lull_mod))
maybe_send_keepalive();
- if (DEBUG_GTE(CHKSUM, 3)) {
+ if (DEBUG_GTE(DELTASUM, 3)) {
rprintf(FINFO,
"chunk[%d] len=%d offset=%s sum1=%08x\n",
i, s->sums[i].len, big_num(s->sums[i].offset, 0),
@@ -323,7 +323,7 @@ void send_files(int f_in, int f_out)
} else
mbuf = NULL;
- if (DEBUG_GTE(CHKSUM, 2)) {
+ if (DEBUG_GTE(DELTASUM, 2)) {
rprintf(FINFO, "send_files mapped %s%s%s of size %s\n",
path,slash,fname, big_num(st.st_size, 0));
}
@@ -332,7 +332,7 @@ void send_files(int f_in, int f_out)
fnamecmp_type, xname, xlen);
write_sum_head(f_xfer, s);
- if (DEBUG_GTE(CHKSUM, 2))
+ if (DEBUG_GTE(DELTASUM, 2))
rprintf(FINFO, "calling match_sums %s%s%s\n", path,slash,fname);
if (log_before_transfer)