aboutsummaryrefslogtreecommitdiffstats
path: root/tools
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 /tools
parent806b2b82b1894fe9a209b9e580375332e1489fb9 (diff)
change the symbol dissect_ber_CHOICE back into dissect_ber_choice
svn path=/trunk/; revision=14980
Diffstat (limited to 'tools')
-rw-r--r--tools/asn2eth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/asn2eth.py b/tools/asn2eth.py
index 1ffa4cec9d..ba0ffdfaa9 100644
--- a/tools/asn2eth.py
+++ b/tools/asn2eth.py
@@ -2535,7 +2535,7 @@ class ChoiceType (Type):
out += " { 0, NULL, 0, NULL }\n};\n"
out += ectx.eth_type_fn_hdr(tname)
if (ectx.Ber()):
- body = ectx.eth_fn_call('dissect_ber_CHOICE', ret='offset',
+ body = ectx.eth_fn_call('dissect_ber_choice', ret='offset',
par=(('pinfo', 'tree', 'tvb', 'offset'),
(tname+'_choice', 'hf_index', ectx.eth_type[tname]['tree'], 'NULL')))
elif (ectx.NPer()):