summaryrefslogtreecommitdiff
path: root/wireshark-lua
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-03-13 16:23:48 +0000
committerOthmar Gsenger <otti@anytun.org>2008-03-13 16:23:48 +0000
commitcb0638d3235424c2f8ef73e33a01fc2ce700e795 (patch)
tree1dc6be0c28f538bb7c627242c3fc83867af645fc /wireshark-lua
parentfixed wrong pointer check with rtp sync (diff)
lua encrypted -> plain
Diffstat (limited to 'wireshark-lua')
-rw-r--r--wireshark-lua/satp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/wireshark-lua/satp.lua b/wireshark-lua/satp.lua
index c43bbe6..1d6985e 100644
--- a/wireshark-lua/satp.lua
+++ b/wireshark-lua/satp.lua
@@ -19,7 +19,7 @@ do
local field_seq = ProtoField.uint32("satp.seq","Sequence Number",base.DEC)
local field_sid = ProtoField.uint16("satp.sid","Sender ID",base.DEC)
local field_mux = ProtoField.uint16("satp.mux","Mux",base.DEC)
- local field_ptype = ProtoField.uint16("satp.ptype","Payload Type (encrypted?)",base.HEX,payload_types)
+ local field_ptype = ProtoField.uint16("satp.ptype","Payload Type (plain?)",base.HEX,payload_types)
proto_satp.fields = { field_seq, field_sid, field_mux, field_ptype }