summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-03 18:12:15 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-05 18:14:22 +0000
commitdaf3ae77afb890228220727be85cc9e89f53f601 (patch)
treecd1022941073c061003c117652ed9c88e10cbff7 /plugins
parent959a0ed22ccab1167314d4e3b38bbb8f8eef2296 (diff)
downloadwireshark-daf3ae77afb890228220727be85cc9e89f53f601.tar.gz
pn dcp (profinet): fix conflicting entry in its value_string
Field 'BlockQualifier: ResettoFactory' (pn_dcp.block_qualifier_reset) has a conflicting entry in its value_string: 9 is at indices 7 (Resets all stored data) and 12 (Reserved)) Change-Id: I9d43fc44899d47eaafb50a76511dda69560a75da Reviewed-on: https://code.wireshark.org/review/21512 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/profinet/packet-pn-dcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/profinet/packet-pn-dcp.c b/plugins/profinet/packet-pn-dcp.c
index 58b218f754..4fa2b729a4 100644
--- a/plugins/profinet/packet-pn-dcp.c
+++ b/plugins/profinet/packet-pn-dcp.c
@@ -182,7 +182,7 @@ static const value_string pn_dcp_BlockQualifier[] = {
{ 0x000B, "Reset engineering parameter" },
{ 0x000C, "Reserved" },
{ 0x000D, "Reserved" },
- { 0x0009, "Reserved" },
+ { 0x000E, "Reserved" },
{ 0x0010, "Resets all stored data in the IOD or IOC to its factory values" },
{ 0x0011, "Resets all stored data in the IOD or IOC to its factory values" },
{ 0x0012, "Reset and restore data" },