summaryrefslogtreecommitdiff
path: root/asn1/tcap/tcap.cnf
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-07-21 21:12:09 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-07-21 21:12:09 +0000
commit0ca30abe654cc8b33df71c98ba8dfed4f5ec3053 (patch)
tree68fb52d6451f213d2aac83fac70ff15605ae509e /asn1/tcap/tcap.cnf
parent806b2b82b1894fe9a209b9e580375332e1489fb9 (diff)
downloadwireshark-0ca30abe654cc8b33df71c98ba8dfed4f5ec3053.tar.gz
change the symbol dissect_ber_CHOICE back into dissect_ber_choice
svn path=/trunk/; revision=14980
Diffstat (limited to 'asn1/tcap/tcap.cnf')
-rw-r--r--asn1/tcap/tcap.cnf6
1 files changed, 3 insertions, 3 deletions
diff --git a/asn1/tcap/tcap.cnf b/asn1/tcap/tcap.cnf
index f2962130af..1e3f811f92 100644
--- a/asn1/tcap/tcap.cnf
+++ b/asn1/tcap/tcap.cnf
@@ -122,13 +122,13 @@ if (ber_oid_dissector_table && cur_oid){
if(!dissector_try_string(ber_oid_dissector_table, cur_oid, next_tvb, pinfo, tcap_top_tree))
{
if (!dissector_try_port(tcap_itu_ssn_dissector_table, pinfo->match_port, next_tvb,pinfo, tcap_top_tree))
- dissect_ber_CHOICE(pinfo, tree, next_tvb, 0,
+ dissect_ber_choice(pinfo, tree, next_tvb, 0,
Component_choice, hf_index, ett_tcap_Component, NULL);
}
}
else
if (!dissector_try_port(tcap_itu_ssn_dissector_table, pinfo->match_port, next_tvb, pinfo, tcap_top_tree))
- dissect_ber_CHOICE(pinfo, tree, next_tvb, 0,
+ dissect_ber_choice(pinfo, tree, next_tvb, 0,
Component_choice, hf_index, ett_tcap_Component, NULL);
offset+=len;
@@ -189,7 +189,7 @@ next_tvb = tvb_new_subset(tvb, offset, -1, -1);
if (!dissector_try_port(tcap_ansi_ssn_dissector_table, pinfo->match_port, next_tvb, pinfo, tcap_top_tree))
{
- offset = dissect_ber_CHOICE(pinfo, tree, tvb, offset,
+ offset = dissect_ber_choice(pinfo, tree, tvb, offset,
ComponentPDU_choice, hf_index, ett_tcap_ComponentPDU, NULL);
}