aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2014-12-21 08:02:26 -0500
committerMichael Mann <mmann78@netscape.net>2014-12-26 21:17:10 +0000
commit3d3f97320b90296bdb3649929bcc73a55823dee9 (patch)
tree4b906cf0a1e6e25371fc6eecbef89461d90c0cff /epan/follow.c
parentb68fb9b659b0debd7286195f9ad194be998cc3ff (diff)
Replace ip_to_str with [ep_]address_to_str and tvb_ip_to_str.
Change-Id: I40d0c8253743183aecef252040b7dd6742ae5c71 Reviewed-on: https://code.wireshark.org/review/5934 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/follow.c')
-rw-r--r--epan/follow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/follow.c b/epan/follow.c
index cd58b71116..f48edf4342 100644
--- a/epan/follow.c
+++ b/epan/follow.c
@@ -135,8 +135,8 @@ build_follow_conv_filter( packet_info *pi ) {
/* UDP over IPv4 */
buf = g_strdup_printf(
"(ip.addr eq %s and ip.addr eq %s) and (udp.port eq %d and udp.port eq %d)",
- ip_to_str((const guint8 *)pi->net_src.data),
- ip_to_str((const guint8 *)pi->net_dst.data),
+ address_to_str(pi->pool, &pi->net_src),
+ address_to_str(pi->pool, &pi->net_dst),
pi->srcport, pi->destport );
len = 4;
is_ipv6 = FALSE;