aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wspython
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-10-11 19:24:19 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-10-11 19:24:19 +0000
commitf355d35acfd2013f2caf3a5332f7b3b927526f27 (patch)
tree14cb78a5f957bd2f3a786846c891435ad24c66e3 /epan/wspython
parent8e964a9da0c6481dcd8ac3516041f73ddbc81316 (diff)
From Eliot:
Patch wspy_dissector.py to use dissector_add_uint https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448 svn path=/trunk/; revision=39375
Diffstat (limited to 'epan/wspython')
-rwxr-xr-xepan/wspython/wspy_dissector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/wspython/wspy_dissector.py b/epan/wspython/wspy_dissector.py
index 22a6009a76..6dfb11a887 100755
--- a/epan/wspython/wspy_dissector.py
+++ b/epan/wspython/wspy_dissector.py
@@ -311,7 +311,7 @@ class Dissector(object):
self.create_dissector_handle(self.__protocol)
else:
handle = private_handle
- self.__wsl.dissector_add(type, protocol_id, handle)
+ self.__wsl.dissector_add_uint(type, protocol_id, handle)
except Exception, e:
print "creating dissector failed", e
raise