aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-vines.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-vines.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-vines.c')
-rw-r--r--epan/dissectors/packet-vines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vines.c b/epan/dissectors/packet-vines.c
index f798db39c1..43658d21fc 100644
--- a/epan/dissectors/packet-vines.c
+++ b/epan/dissectors/packet-vines.c
@@ -1478,7 +1478,7 @@ rtp_show_gateway_info(proto_tree *tree, tvbuff_t *tvb, int offset,
proto_tree_add_text(tree, tvb, offset, link_addr_length,
"Preferred Gateway Data Link Address: %s",
link_addr_length == 6 ?
- ether_to_str(tvb_get_ptr(tvb, offset, link_addr_length)) :
+ tvb_ether_to_str(tvb, offset) :
tvb_bytes_to_str(tvb, offset, link_addr_length));
offset += link_addr_length;
}