diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2010-02-24 08:22:33 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2010-02-24 08:22:33 +0000 |
commit | 25dcd066b6799026f1d2bf52bfd576e6be324f92 (patch) | |
tree | 9224f313b4c1d8d5ec677648fa879d547592d1f2 /plugins | |
parent | 2a056294908401d187e0ab76aaa7efcad5e29ad4 (diff) | |
download | wireshark-25dcd066b6799026f1d2bf52bfd576e6be324f92.tar.gz wireshark-25dcd066b6799026f1d2bf52bfd576e6be324f92.tar.bz2 wireshark-25dcd066b6799026f1d2bf52bfd576e6be324f92.zip |
From Hannes Diethelm via bug 4525:
Corrected values for IdentInfo (which was obviously wrong)
svn path=/trunk/; revision=31978
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/profinet/packet-dcerpc-pn-io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/profinet/packet-dcerpc-pn-io.c b/plugins/profinet/packet-dcerpc-pn-io.c index 083b32df01..50747f2da7 100644 --- a/plugins/profinet/packet-dcerpc-pn-io.c +++ b/plugins/profinet/packet-dcerpc-pn-io.c @@ -1467,8 +1467,8 @@ static const value_string pn_io_submodule_state_ar_info[] = { static const value_string pn_io_submodule_state_ident_info[] = { { 0x0000, "OK" }, { 0x0001, "Substitute (SU)" }, - { 0x0001, "Wrong (WR)" }, - { 0x0001, "NoSubmodule (NO)" }, + { 0x0002, "Wrong (WR)" }, + { 0x0003, "NoSubmodule (NO)" }, /*0x0004 - 0x000F reserved */ { 0, NULL } }; |