aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-30 14:22:26 +0000
committerkukosa <kukosa@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-30 14:22:26 +0000
commited88045a8d81f9d50193c2776a9d186e22807514 (patch)
tree5d4b668eb47dc2207bf558aa27c0b286eaeb62a5 /tools
parent3783deee406f8f0172345918a9e526f28e62acec (diff)
- fix bug in TaggedType support
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@22003 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/asn2wrs.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/asn2wrs.py b/tools/asn2wrs.py
index 0c25a16dbd..17ca881374 100755
--- a/tools/asn2wrs.py
+++ b/tools/asn2wrs.py
@@ -3334,6 +3334,10 @@ class TaggedType (Type):
self.val_name = ident + '/' + '_untag'
self.val.eth_reg(self.val_name, ectx, tstrip=self.tstrip+1, tagflag=True, parent=ident)
+ def GetTTag(self, ectx):
+ #print "GetTTag(%s)\n" % self.seltype;
+ return self.GetTag(ectx)
+
def eth_ftype(self, ectx):
return self.val.eth_ftype(ectx)