summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-02 09:12:26 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-02 12:29:25 +0000
commit886c571b473b8be51c0c476c517caa655b6f44ef (patch)
treecb15f97c15e1584e34f2407438fe54bdc5bacc44
parentb64889d62e9b4a5494c38b7e585c6eedae1a466c (diff)
downloadwireshark-886c571b473b8be51c0c476c517caa655b6f44ef.tar.gz
nettl: fix conflicting entry in its value_string
Field 'Trace Kind' (nettl.kind) has a conflicting entry in its value_string: 536870912 is at indices 2 (Incoming PDU - PDUIN) and 3 (PDUIN)) Field 'Trace Kind' (nettl.kind) has a conflicting entry in its value_string: 268435456 is at indices 4 (Outgoing PDU - PDUOUT) and 5 (PDUOUT)) Change-Id: I14d47225a4ae83b6667313e5c0ca13e4d4d64831 Reviewed-on: https://code.wireshark.org/review/21452 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-nettl.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-nettl.c b/epan/dissectors/packet-nettl.c
index f9871a7ed6..52b4ab0362 100644
--- a/epan/dissectors/packet-nettl.c
+++ b/epan/dissectors/packet-nettl.c
@@ -66,9 +66,7 @@ static const value_string trace_kind[] = {
{ 0x80000000, "Incoming Header" },
{ 0x40000000, "Outgoing Header" },
{ 0x20000000, "Incoming PDU - PDUIN" },
- { 0x20000000, "PDUIN" },
{ 0x10000000, "Outgoing PDU - PDUOUT" },
- { 0x10000000, "PDUOUT" },
{ 0x08000000, "Procedure Trace" },
{ 0x04000000, "State Trace" },
{ 0x02000000, "Error Trace" },