aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-k12.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2022-08-25 22:37:19 -0700
committerGuy Harris <gharris@sonic.net>2022-08-25 22:37:19 -0700
commitdeb95a275d0e7c78cb09efef3109cc33d92c4d38 (patch)
tree08ca451f3e55c0a30a8a65102c1b5fda670d161a /epan/dissectors/packet-k12.c
parent8195bdd3407d6bdcc0f1afa4245d543dd894cf49 (diff)
Rename routines that talk about conversation keys to talk about elements.
And change them to say "set" rather than "create"; they do more than just allocate an array of conversation elements, they stuff a pointer to that array into pinfo, which may affect what other dissectors do.
Diffstat (limited to 'epan/dissectors/packet-k12.c')
-rw-r--r--epan/dissectors/packet-k12.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-k12.c b/epan/dissectors/packet-k12.c
index cb55983de2..e5994e01ee 100644
--- a/epan/dissectors/packet-k12.c
+++ b/epan/dissectors/packet-k12.c
@@ -211,7 +211,7 @@ dissect_k12(tvbuff_t* tvb,packet_info* pinfo,proto_tree* tree, void* data _U_)
* XXX: this is prone to collisions!
* we need an uniform way to manage circuits between dissectors
*/
- conversation_create_key_by_id(pinfo, CONVERSATION_NONE, g_str_hash(circuit_str));
+ conversation_set_elements_by_id(pinfo, CONVERSATION_NONE, g_str_hash(circuit_str));
proto_tree_add_uint(k12_tree, hf_k12_atm_vp, tvb, 0, 0,
pinfo->pseudo_header->k12.input_info.atm.vp);