aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dpaux.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-dpaux.c')
-rw-r--r--epan/dissectors/packet-dpaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-dpaux.c b/epan/dissectors/packet-dpaux.c
index fd2797eb49..e9461e2f8f 100644
--- a/epan/dissectors/packet-dpaux.c
+++ b/epan/dissectors/packet-dpaux.c
@@ -177,7 +177,7 @@ dissect_dpaux_from_source(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
struct dpaux_transaction *transaction = NULL;
conversation = conversation_new(pinfo->num, &pinfo->src, &pinfo->dst,
- ENDPOINT_NONE, pinfo->srcport, pinfo->destport, 0);
+ CONVERSATION_NONE, pinfo->srcport, pinfo->destport, 0);
transaction = wmem_new(wmem_file_scope(), struct dpaux_transaction);
transaction->is_native = type;
@@ -220,7 +220,7 @@ dissect_dpaux_from_sink(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
proto_item *ti;
conversation = find_conversation(pinfo->num, &pinfo->src, &pinfo->dst,
- ENDPOINT_NONE, pinfo->srcport, pinfo->destport, 0);
+ CONVERSATION_NONE, pinfo->srcport, pinfo->destport, 0);
if (conversation)
transaction = (struct dpaux_transaction*)conversation_get_proto_data(
conversation, proto_dpaux);