aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-uma.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2011-01-17 15:22:11 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2011-01-17 15:22:11 +0000
commitfa16c931e1e7cdd306bef55c63f815bc4197fee6 (patch)
tree8483274e6660e17ff3488079676ff09bb3c25c04 /epan/dissectors/packet-uma.c
parent7205313026cedb803594feeedd7d868b59340cd4 (diff)
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
Diffstat (limited to 'epan/dissectors/packet-uma.c')
-rw-r--r--epan/dissectors/packet-uma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-uma.c b/epan/dissectors/packet-uma.c
index bda3fed8b9..06af702def 100644
--- a/epan/dissectors/packet-uma.c
+++ b/epan/dissectors/packet-uma.c
@@ -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");
}