From Eliot:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 11 Oct 2011 19:24:19 +0000 (19:24 +0000)
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 11 Oct 2011 19:24:19 +0000 (19:24 +0000)
Patch wspy_dissector.py to use dissector_add_uint
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6448

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39375 f5534014-38df-0310-8fa8-9805f1628bb7

epan/wspython/wspy_dissector.py

index 22a6009a76674db649e3d250891901b3ae75f769..6dfb11a8870dbb2ea89967012778eedfb2c32bd3 100755 (executable)
@@ -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