From 5eaa9e770533345dfc6664a5d53c6931b00fdc75 Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Wed, 29 Mar 2017 07:37:38 -0400 Subject: packet-icmpv6.c: Fix some value_strings Change-Id: Ieae37af709b670792cca3937674ba0cc1026d45f Reviewed-on: https://code.wireshark.org/review/20783 Reviewed-by: Michael Mann --- epan/dissectors/packet-icmpv6.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'epan/dissectors/packet-icmpv6.c') 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 */ -- cgit v1.2.3