git://git.openafs.org
/
openafs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
opr: Make opr_jhash_opaque consistent with opr_jhash
[openafs.git]
/
src
/
opr
/
jhash.h
diff --git
a/src/opr/jhash.h
b/src/opr/jhash.h
index
e7b7d5d
..
9c82f9c
100644
(file)
--- a/
src/opr/jhash.h
+++ b/
src/opr/jhash.h
@@
-125,7
+125,7
@@
opr_jhash_opaque(const void *val, size_t length, afs_uint32 initval)
afs_uint32 a,b,c;
/* Set up the internal state */
- a = b = c = 0xdeadbeef + (((afs_uint32)length)<<2) + initval;
+ a = b = c = 0xdeadbeef + ((afs_uint32)length) + initval;
while (length > 12) {
a += (afs_uint32) str[3]<<24 |