Got the order of s1 and s2 right in the debug output.
authorWayne Davison <wayned@samba.org>
Tue, 28 Feb 2006 21:48:15 +0000 (21:48 +0000)
committerWayne Davison <wayned@samba.org>
Tue, 28 Feb 2006 21:48:15 +0000 (21:48 +0000)
match.c

diff --git a/match.c b/match.c
index 9ee5788..1f36a58 100644 (file)
--- 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)];