aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-ssl-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index d7ac91fef7..cf24aa4997 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -3368,7 +3368,7 @@ ssl_private_key_hash (gconstpointer v)
cur = (const guint8 *) key->addr.data;
for (l=4; (l<len); l+=4, cur+=4)
- hash = hash ^ pntoh3l(cur);
+ hash = hash ^ pntohl(cur);
return hash;
}