aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tdmop.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-tdmop.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-tdmop.c')
-rw-r--r--epan/dissectors/packet-tdmop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tdmop.c b/epan/dissectors/packet-tdmop.c
index 4e8deac237..e31b79aee8 100644
--- a/epan/dissectors/packet-tdmop.c
+++ b/epan/dissectors/packet-tdmop.c
@@ -104,7 +104,7 @@ static int dissect_tdmop(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, vo
offset += 1;
/*conversation*/
- conversation_create_key_by_address_port_pairs(pinfo, &pinfo->src, &pinfo->dst, CONVERSATION_TDMOP, srcch, dstch);
+ conversation_set_elements_by_address_port_pairs(pinfo, &pinfo->src, &pinfo->dst, CONVERSATION_TDMOP, srcch, dstch);
/*flags*/
proto_tree_add_item(tdmop_tree, hf_tdmop_Flags, tvb, offset, 1, ENC_NA);