aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-icmpv6.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-03-29 07:37:38 -0400
committerMichael Mann <mmann78@netscape.net>2017-03-29 11:45:09 +0000
commit5eaa9e770533345dfc6664a5d53c6931b00fdc75 (patch)
treec06a1cb418442c1a057e49bb15754f93d5ec1fb2 /epan/dissectors/packet-icmpv6.c
parent08e4d57ec452a1b809297af71f6bfb60bf503fb7 (diff)
packet-icmpv6.c: Fix some value_strings
Change-Id: Ieae37af709b670792cca3937674ba0cc1026d45f Reviewed-on: https://code.wireshark.org/review/20783 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-icmpv6.c')
-rw-r--r--epan/dissectors/packet-icmpv6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-icmpv6.c b/epan/dissectors/packet-icmpv6.c
index 546acad79e..9dfdc094a6 100644
--- a/epan/dissectors/packet-icmpv6.c
+++ b/epan/dissectors/packet-icmpv6.c
@@ -986,10 +986,10 @@ static const value_string option_vals[] = {
#define ND_NA_FLAG_RSV 0x1FFFFFFF
static const value_string nd_flag_router_pref[] = {
- { 1, "High" },
{ 0, "Medium" },
- { 3, "Low" },
+ { 1, "High" },
{ 2, "Reserved" },
+ { 3, "Low" },
{ 0, NULL}
};
@@ -1284,7 +1284,7 @@ static const value_string mpl_seed_id_lengths[] = {
{ 1, "16 bits" },
{ 2, "64 bits" },
{ 3, "128 bits" },
- { 4, NULL}
+ { 0, NULL}
};
static const guint8 mpl_seed_id_code_to_length[] = { 0, 2, 8, 16 }; /* bytes */