summaryrefslogtreecommitdiff
path: root/match.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-02-28 00:31:51 +0000
committerWayne Davison <wayned@samba.org>2006-02-28 00:31:51 +0000
commitc64ca7ef58bf3b2eb41cd0d1cd809fe934be4d8a (patch)
tree84a39e1b7c79ba8abff2f76593e5bd1b2b97b2ad /match.c
parent900cfcb584e878c9600827b7e0ad7160e1018b48 (diff)
downloadrsync-c64ca7ef58bf3b2eb41cd0d1cd809fe934be4d8a.tar.gz
Eliminated one variable from hash_search().
Diffstat (limited to 'match.c')
-rw-r--r--match.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/match.c b/match.c
index ee49a0ef..300e2ba0 100644
--- a/match.c
+++ b/match.c
@@ -162,13 +162,11 @@ static void hash_search(int f,struct sum_struct *s,
do {
int done_csum2 = 0;
int32 i;
- uint32 t;
if (verbose > 4)
rprintf(FINFO,"offset=%.0f sum=%08x\n",(double)offset,sum);
- t = GETTAG(sum);
- i = sum_table[t];
+ i = sum_table[GETTAG(sum)];
if (i < 0)
goto null_hash;