aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-08 22:10:35 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-08 22:10:35 +0000
commitc98cd49d23b8a71fc0a1b987bb202582118a94dd (patch)
treea107255a08ba272350b42e67e8660f9f5aaa3f9f /tools
parent3b0b3ffec6de6cac42ad82351d292351b7c55359 (diff)
Make the check work on hexadecimal bitmasks.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31208 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ftsanity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ftsanity.py b/tools/ftsanity.py
index 39ff6fbd89..a1eb4101ed 100755
--- a/tools/ftsanity.py
+++ b/tools/ftsanity.py
@@ -38,7 +38,7 @@ class Field:
self.parent = data[4]
self.blurb = data[5]
self.base = data[6]
- self.bitmask = int(data[7])
+ self.bitmask = int(data[7],0)