diff options
author | Wayne Davison <wayned@samba.org> | 2006-02-28 21:48:15 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-02-28 21:48:15 +0000 |
commit | 34f961bbf37013a52f1ba4d24dfacc5e9decf589 (patch) | |
tree | 30c4029596febfa870db5498f51656959c430c46 | |
parent | 2384f9e1db394334e696ed75006f9b1d5581d59a (diff) | |
download | rsync-34f961bbf37013a52f1ba4d24dfacc5e9decf589.tar.gz |
Got the order of s1 and s2 right in the debug output.
-rw-r--r-- | match.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)]; |