aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-05-02 09:09:32 +0200
committerMichael Mann <mmann78@netscape.net>2017-05-02 12:43:32 +0000
commita81ddf2d4c090077df554d819e83a6f46ca81e44 (patch)
treed3059759913d765267e7d720944c137329684fc7 /epan
parent527c31fdc986bff555cd6b8ecacc586265bb1469 (diff)
nmas (ncp): fix conflicting entry in its value_string
Field 'Return Code' (nmas.return_code) has a conflicting entry in its value_string: 4294965609 is at indices 56 ((-1687) EVALUATION VERSION WARNING) and 58 ((-1689) THREAD CREATE)) Field 'Return Code' (nmas.return_code) has a conflicting entry in its value_string: 4294965610 is at indices 55 ((-1686) DLL FAILED LOADING) and 59 ((-1690) SECURE CHANNEL REQUIRED)) Field 'Return Code' (nmas.return_code) has a conflicting entry in its value_string: 4294965611 is at indices 54 ((-1685) UNICODE FAILED INIT) and 60 ((-1691) NO DEFAULT USER SEQUENCE)) Field 'Return Code' (nmas.return_code) has a conflicting entry in its value_string: 4294965612 is at indices 53 ((-1684) CODEPAGE FAILED INIT) and 61 ((-1692) NO TREENAME)) Field 'Return Code' (nmas.return_code) has a conflicting entry in its value_string: 4294965613 is at indices 52 ((-1683) DOUBLEBYTE FAILED INIT) and 62 ((-1693) MECHANISM NOT FOUND)) Field 'Payload Error' (nmas.encrypt_error) has a conflicting entry in its value_string: 4294965609 is at indices 56 ((-1687) EVALUATION VERSION WARNING) and 58 ((-1689) THREAD CREATE)) Field 'Payload Error' (nmas.encrypt_error) has a conflicting entry in its value_string: 4294965610 is at indices 55 ((-1686) DLL FAILED LOADING) and 59 ((-1690) SECURE CHANNEL REQUIRED)) Field 'Payload Error' (nmas.encrypt_error) has a conflicting entry in its value_string: 4294965611 is at indices 54 ((-1685) UNICODE FAILED INIT) and 60 ((-1691) NO DEFAULT USER SEQUENCE)) Field 'Payload Error' (nmas.encrypt_error) has a conflicting entry in its value_string: 4294965612 is at indices 53 ((-1684) CODEPAGE FAILED INIT) and 61 ((-1692) NO TREENAME)) Field 'Payload Error' (nmas.encrypt_error) has a conflicting entry in its value_string: 4294965613 is at indices 52 ((-1683) DOUBLEBYTE FAILED INIT) and 62 ((-1693) MECHANISM NOT FOUND)) Change-Id: I2bdaa16b04c9d34cfbc5e83ca2b612326216224a Reviewed-on: https://code.wireshark.org/review/21451 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ncp-nmas.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-ncp-nmas.c b/epan/dissectors/packet-ncp-nmas.c
index d0a5727d18..4848bd1990 100644
--- a/epan/dissectors/packet-ncp-nmas.c
+++ b/epan/dissectors/packet-ncp-nmas.c
@@ -167,11 +167,11 @@ static const value_string nmas_errors_enum[] = {
{ 0xFFFFF96A, "(-1686) DLL FAILED LOADING" },
{ 0xFFFFF969, "(-1687) EVALUATION VERSION WARNING" },
{ 0xFFFFF968, "(-1688) CONCURRENT LOGIN" },
- { 0xFFFFF969, "(-1689) THREAD CREATE" },
- { 0xFFFFF96A, "(-1690) SECURE CHANNEL REQUIRED" },
- { 0xFFFFF96B, "(-1691) NO DEFAULT USER SEQUENCE" },
- { 0xFFFFF96C, "(-1692) NO TREENAME" },
- { 0xFFFFF96D, "(-1693) MECHANISM NOT FOUND" },
+ { 0xFFFFF967, "(-1689) THREAD CREATE" },
+ { 0xFFFFF966, "(-1690) SECURE CHANNEL REQUIRED" },
+ { 0xFFFFF965, "(-1691) NO DEFAULT USER SEQUENCE" },
+ { 0xFFFFF964, "(-1692) NO TREENAME" },
+ { 0xFFFFF963, "(-1693) MECHANISM NOT FOUND" },
{ 0, NULL }
};