aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-radius.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2011-01-21 02:48:55 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2011-01-21 02:48:55 +0000
commit6e0fcb7ab5d1e24abfdd80eb51e4537b5b2dd191 (patch)
treeb0e59e8026e85564d0963662dbd4e08a5738bea0 /epan/dissectors/packet-radius.c
parent03066d08202df49fab3daaa84287dea16cdd3510 (diff)
Introduce, and start using, tvb_eth_to_str().
Export tvb_*_to_str() and put them in alphabetical order. svn path=/trunk/; revision=35602
Diffstat (limited to 'epan/dissectors/packet-radius.c')
-rw-r--r--epan/dissectors/packet-radius.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-radius.c b/epan/dissectors/packet-radius.c
index 6a84d7d601..96520869b6 100644
--- a/epan/dissectors/packet-radius.c
+++ b/epan/dissectors/packet-radius.c
@@ -724,7 +724,7 @@ void radius_ether(radius_attr_info_t* a, proto_tree* tree, packet_info *pinfo _U
}
proto_tree_add_item(tree, a->hf, tvb, offset, len, FALSE);
- proto_item_append_text(avp_item, "%s", ether_to_str(tvb_get_ptr(tvb, offset, len)));
+ proto_item_append_text(avp_item, "%s", tvb_ether_to_str(tvb, offset));
}
void radius_ifid(radius_attr_info_t* a, proto_tree* tree, packet_info *pinfo _U_, tvbuff_t* tvb, int offset, int len, proto_item* avp_item) {