aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x25.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-x25.c')
-rw-r--r--epan/dissectors/packet-x25.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-x25.c b/epan/dissectors/packet-x25.c
index 9a34b9a1b6..68b1b9535d 100644
--- a/epan/dissectors/packet-x25.c
+++ b/epan/dissectors/packet-x25.c
@@ -535,7 +535,7 @@ x25_hash_add_proto_start(guint16 vc, guint32 frame, dissector_handle_t dissect)
/*
* Is there already a circuit with this VC number?
*/
- conv = find_conversation_by_id(frame, ENDPOINT_X25, vc, 0);
+ conv = find_conversation_by_id(frame, ENDPOINT_X25, vc);
if (conv != NULL) {
/*
* Yes - close it, as we're creating a new one.
@@ -546,7 +546,7 @@ x25_hash_add_proto_start(guint16 vc, guint32 frame, dissector_handle_t dissect)
/*
* Set up a new circuit.
*/
- conv = conversation_new_by_id(frame, ENDPOINT_X25, vc, 0);
+ conv = conversation_new_by_id(frame, ENDPOINT_X25, vc);
/*
* Set its dissector.
@@ -562,7 +562,7 @@ x25_hash_add_proto_end(guint16 vc, guint32 frame)
/*
* Try to find the circuit.
*/
- conv = find_conversation_by_id(frame, ENDPOINT_X25, vc, 0);
+ conv = find_conversation_by_id(frame, ENDPOINT_X25, vc);
/*
* If we succeeded, close it.
@@ -1229,7 +1229,7 @@ dissect_x25_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
modulo = ((bytes0_1 & 0x2000) ? 128 : 8);
vc = (int)(bytes0_1 & 0x0FFF);
- conversation_create_endpoint_by_id(pinfo, ENDPOINT_X25, vc, 0);
+ conversation_create_endpoint_by_id(pinfo, ENDPOINT_X25, vc);
if (bytes0_1 & X25_ABIT) toa = TRUE;
else toa = FALSE;