aboutsummaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-02-28 21:48:15 +0000
committerWayne Davison <wayned@samba.org>2006-02-28 21:48:15 +0000
commit34f961bbf37013a52f1ba4d24dfacc5e9decf589 (patch)
tree30c4029596febfa870db5498f51656959c430c46 /match.c
parent2384f9e1db394334e696ed75006f9b1d5581d59a (diff)
downloadandroid_external_rsync-34f961bbf37013a52f1ba4d24dfacc5e9decf589.tar.gz
android_external_rsync-34f961bbf37013a52f1ba4d24dfacc5e9decf589.tar.bz2
android_external_rsync-34f961bbf37013a52f1ba4d24dfacc5e9decf589.zip
Got the order of s1 and s2 right in the debug output.
Diffstat (limited to 'match.c')
-rw-r--r--match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/match.c b/match.c
index 9ee57885..1f36a585 100644
--- a/match.c
+++ b/match.c
@@ -159,7 +159,7 @@ static void hash_search(int f,struct sum_struct *s,
if (verbose > 4) {
rprintf(FINFO, "offset=%.0f sum=%04x%04x\n",
- (double)offset, s1 & 0xFFFF, s2 & 0xFFFF);
+ (double)offset, s2 & 0xFFFF, s1 & 0xFFFF);
}
i = hash_table[SUM2HASH2(s1,s2)];