summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-dhcpv6.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-12-16 11:13:02 -0800
committerGuy Harris <guy@alum.mit.edu>2016-12-16 19:14:08 +0000
commitbd494c326e81c85705cd073119efb50446eb4bd9 (patch)
tree0268e0468391b499802cf34aa1c76f762ae1ddaf /epan/dissectors/packet-dhcpv6.c
parent3649993ded921c521dc2ecb57bddc09bb1f4f8c8 (diff)
downloadwireshark-bd494c326e81c85705cd073119efb50446eb4bd9.tar.gz
Sort opttype_vals by the option value.
Otherwise, we get complaints when generating the value_string_ext from it. Change-Id: I2b4fc4c57b1f0c47706fe73187192c155593da84 Reviewed-on: https://code.wireshark.org/review/19306 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-dhcpv6.c')
-rw-r--r--epan/dissectors/packet-dhcpv6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dhcpv6.c b/epan/dissectors/packet-dhcpv6.c
index 058b301120..0608a5b1dc 100644
--- a/epan/dissectors/packet-dhcpv6.c
+++ b/epan/dissectors/packet-dhcpv6.c
@@ -531,11 +531,11 @@ static const value_string opttype_vals[] = {
{ OPTION_ANI_AP_BSSID, "Access Point BSSID" },
{ OPTION_ANI_OPERATOR_ID, "Access Network Operator ID" },
{ OPTION_ANI_OPERATOR_REALM, "Access Network Operator Realm" },
+ { OPTION_MUDURL, "Manufacturer Usage Description" },
{ OPTION_IPv6_ADDRESS_ANDSF, "ANDSF IPv6 Address" },
{ OPTION_MIP6_HA, "Mobile IPv6 Home Agent" },
{ OPTION_MIP6_HOA, "Mobile IPv6 Home Address" },
{ OPTION_NAI, "Network Access Identifier" },
- { OPTION_MUDURL, "Manufacturer Usage Description" },
{ 0, NULL }
};
static value_string_ext opttype_vals_ext = VALUE_STRING_EXT_INIT(opttype_vals);