aboutsummaryrefslogtreecommitdiffstats
path: root/docbook
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2007-09-12 15:32:09 +0000
committerBill Meier <wmeier@newsguy.com>2007-09-12 15:32:09 +0000
commit626c9f3d610664fe2bb6e515647ba0a5044ae4a8 (patch)
treeae25447d7a85eae13c4d874ead32ed9d7d632f0f /docbook
parentf891c2cc6a68b05ffdc166dd184b43eca14d4c38 (diff)
From Patrick Lundquist:
the Lua dissector example in wsluarm.xml uses C defines instead of Lua defines where display bases for ProtoFields are used. svn path=/trunk/; revision=22853
Diffstat (limited to 'docbook')
-rw-r--r--docbook/wsluarm.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docbook/wsluarm.xml b/docbook/wsluarm.xml
index b53d9656d3..018c4b9c32 100644
--- a/docbook/wsluarm.xml
+++ b/docbook/wsluarm.xml
@@ -51,8 +51,8 @@ do
[8] = "nbap"
}
- local f_proto = ProtoField.uint8("multi.protocol","Protocol",BASE_DEC,vs_protos)
- local f_dir = ProtoField.uint8("multi.direction","Direction",BASE_DEC,{ [1] = "incoming", [0] = "outgoing"})
+ local f_proto = ProtoField.uint8("multi.protocol","Protocol",base.DEC,vs_protos)
+ local f_dir = ProtoField.uint8("multi.direction","Direction",base.DEC,{ [1] = "incoming", [0] = "outgoing"})
local f_text = ProtoField.string("multi.text","Text")
p_multi.fields = { f_proto, f_dir, f_text }