aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-02-28 08:22:02 +0000
committerGuy Harris <guy@alum.mit.edu>2005-02-28 08:22:02 +0000
commite0744702782855c01800b2ad62fde0017ef1d974 (patch)
tree81b5127adce975329ddaf1040a8a1f60737a00b1 /tools
parent6e0186da1226eeeb91b4e61c2ad3f5d380dc557d (diff)
Handle the new signature for "dissect_per_restricted_character_string()".
svn path=/trunk/; revision=13547
Diffstat (limited to 'tools')
-rw-r--r--tools/asn2eth.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/asn2eth.py b/tools/asn2eth.py
index 96d6440367..88adfdd063 100644
--- a/tools/asn2eth.py
+++ b/tools/asn2eth.py
@@ -2746,7 +2746,8 @@ class RestrictedCharacterStringType (CharacterStringType):
if (ectx.OPer()):
body = ectx.eth_fn_call('dissect_per_restricted_character_string', ret='offset',
par=(('tvb', 'offset', 'pinfo', 'tree', 'hf_index'),
- (minv, maxv, alphabet, alphabet_length)))
+ (minv, maxv, alphabet, alphabet_length),
+ ('NULL','NULL')))
else:
body = '#error Can not decode %s' % (tname)
elif (ectx.NPer()):