aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eth.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-eth.c')
-rw-r--r--epan/dissectors/packet-eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-eth.c b/epan/dissectors/packet-eth.c
index 7c749517f5..04e855810d 100644
--- a/epan/dissectors/packet-eth.c
+++ b/epan/dissectors/packet-eth.c
@@ -170,8 +170,8 @@ static gchar*
eth_build_color_filter(packet_info *pinfo)
{
return g_strdup_printf("eth.addr eq %s and eth.addr eq %s",
- address_to_str(wmem_packet_scope(), &pinfo->dl_src),
- address_to_str(wmem_packet_scope(), &pinfo->dl_dst));
+ address_to_str(pinfo->pool, &pinfo->dl_src),
+ address_to_str(pinfo->pool, &pinfo->dl_dst));
}