802.11: Remove duplicate RIC Descriptor display

Change-Id: I0fa523dd0e62f94e478ad35b216fc3dc5651718c
Reviewed-on: https://code.wireshark.org/review/8547
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-05-20 13:49:48 +02:00 committed by Anders Broman
parent 22aa241eff
commit 90a1303846
1 changed files with 2 additions and 2 deletions

View File

@ -11796,13 +11796,13 @@ dissect_ric_descriptor(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb, int
/* TODO: Still figuring out how to parse these ones,
* need a sample capture with at least HEX Dump
*/
proto_item_append_text(ti, " :RIC Descriptors: Block ACK Params");
proto_item_append_text(ti, " : Block ACK Params");
proto_tree_add_item(tree, hf_ieee80211_tag_ric_desc_var_params, tvb,
offset, tag_len-1, ENC_NA);
offset += tag_len -1;
}else {
/* 0,2-255 are reserved*/
proto_item_append_text(ti, " :RIC Descriptors: 0(Reserved)");
proto_item_append_text(ti, " :Reserved (type != 1)");
}
return offset;
}