aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-03-27 16:13:01 +0200
committerMichael Mann <mmann78@netscape.net>2017-03-27 15:25:25 +0000
commit45e0707472afa319de2f23fbe0081503b1001d29 (patch)
tree6aa58a0c0b6097ab55c50338e58aed1f8346b501 /epan
parentf5ed8a4306fabff20518cc5b176e57c8e9d334de (diff)
bctp: fix conflicting entry in its value_string
Field 'BVEI' (bctp.bvei) has a conflicting entry in its value_string: 0 is at indices 0 (No indication) and 1 (Version Error Indication, BCTP version not supported)) Change-Id: I9071d3ab7aff6b2c3767f0a5596dad23f1ee4b42 Reviewed-on: https://code.wireshark.org/review/20743 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-bctp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bctp.c b/epan/dissectors/packet-bctp.c
index 6709feb545..795ebc4146 100644
--- a/epan/dissectors/packet-bctp.c
+++ b/epan/dissectors/packet-bctp.c
@@ -61,7 +61,7 @@ static const range_string tpi_vals[] = {
static const value_string bvei_vals[] = {
{0,"No indication"},
- {0,"Version Error Indication, BCTP version not supported"},
+ {1,"Version Error Indication, BCTP version not supported"},
{0,NULL}
};