RADIUS: Fix gda9363e202

EVS value was incorrectly typed from the non-extended type space.

Now it should display as unknown.

Ping-Bug: 13745
Change-Id: I67cfa29d3edcd56e49c1f4eded117a26594f0a14
Reviewed-on: https://code.wireshark.org/review/21911
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
João Valverde 2017-06-03 05:35:17 +01:00 committed by Michael Mann
parent ae409ed545
commit c508932a60
1 changed files with 1 additions and 1 deletions

View File

@ -1572,7 +1572,7 @@ dissect_attribute_value_pairs(proto_tree *tree, packet_info *pinfo, tvbuff_t *tv
avp_vsa_len -= avp_vsa_header_len;
if (vendor->attrs_by_id) {
if (vendor->attrs_by_id && !avp_is_extended) {
dictionary_entry = (radius_attr_info_t *)g_hash_table_lookup(vendor->attrs_by_id, GUINT_TO_POINTER(avp_vsa_type));
} else {
dictionary_entry = NULL;