fix for BER string tags

svn path=/trunk/; revision=14800
This commit is contained in:
Tomas Kukosa 2005-06-27 13:45:47 +00:00
parent 05f9375d55
commit f9d6448624
1 changed files with 1 additions and 1 deletions

View File

@ -2790,7 +2790,7 @@ class RestrictedCharacterStringType (CharacterStringType):
(minv, maxv, ext) = self.eth_get_size_constr()
if (ectx.Ber()):
body = ectx.eth_fn_call('dissect_ber_restricted_string', ret='offset',
par=(('implicit_tag', self.GetTag(ectx)[1]),
par=(('implicit_tag', self.GetTTag(ectx)[1]),
('pinfo', 'tree', 'tvb', 'offset', 'hf_index'),
('NULL',)))
elif (ectx.Per() and self.HasConstraint() and self.constr.IsPermAlph()):