diff options
author | Bill Meier <wmeier@newsguy.com> | 2007-09-12 15:32:09 +0000 |
---|---|---|
committer | Bill Meier <wmeier@newsguy.com> | 2007-09-12 15:32:09 +0000 |
commit | 626c9f3d610664fe2bb6e515647ba0a5044ae4a8 (patch) | |
tree | ae25447d7a85eae13c4d874ead32ed9d7d632f0f /docbook/wsluarm.xml | |
parent | f891c2cc6a68b05ffdc166dd184b43eca14d4c38 (diff) | |
download | wireshark-626c9f3d610664fe2bb6e515647ba0a5044ae4a8.tar.gz wireshark-626c9f3d610664fe2bb6e515647ba0a5044ae4a8.tar.bz2 wireshark-626c9f3d610664fe2bb6e515647ba0a5044ae4a8.zip |
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/wsluarm.xml')
-rw-r--r-- | docbook/wsluarm.xml | 4 |
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 } |