aboutsummaryrefslogtreecommitdiffstats
path: root/epan/conversation.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-10-28 11:15:44 -0400
committerMichael Mann <mmann78@netscape.net>2017-10-28 16:00:46 +0000
commit7df5fcdc51cb2616dc7ec97187e73ab7ecccc7b3 (patch)
tree4005bf11a9e1d0a369f6df46b95b5d210e54ca0e /epan/conversation.c
parent23afd9a18453c23cfbbc6a63f52b2e6e64e0056c (diff)
Share use of conversation_hash_exact
It was duplicated in GTK, so just make it public (at least for now) Change-Id: I89d985b2d42f0edb1c535a65a97b132920dedbcd Reviewed-on: https://code.wireshark.org/review/24146 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/conversation.c')
-rw-r--r--epan/conversation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/conversation.c b/epan/conversation.c
index 63c5b8de1d..bf81957b5f 100644
--- a/epan/conversation.c
+++ b/epan/conversation.c
@@ -162,7 +162,7 @@ conversation_create_from_template(conversation_t *conversation, const address *a
/* http://eternallyconfuzzled.com/tuts/algorithms/jsw_tut_hashing.aspx#existing
* One-at-a-Time hash
*/
-static guint
+guint
conversation_hash_exact(gconstpointer v)
{
const conversation_key *key = (const conversation_key *)v;