Actually use proto_tree_add_item() instead of proto_tree_add_ether(). I hope I didn't miss more of these...

svn path=/trunk/; revision=35569
This commit is contained in:
Jeff Morriss 2011-01-17 15:22:11 +00:00
parent 7205313026
commit fa16c931e1
1 changed files with 1 additions and 1 deletions

View File

@ -1478,7 +1478,7 @@ dissect_uma_IE(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset)
octet = tvb_get_guint8(tvb,ie_offset);
if (( octet & 0xf) == 0){ /* IEEE MAC-address format */
ie_offset++;
proto_tree_add_ether(urr_ie_tree, hf_uma_urr_ms_radio_id, tvb, ie_offset, ie_len, ENC_NA);
proto_tree_add_item(urr_ie_tree, hf_uma_urr_ms_radio_id, tvb, ie_offset, ie_len, ENC_NA);
}else{
proto_tree_add_text(urr_ie_tree, tvb, ie_offset, ie_len,"Unknown format");
}