aboutsummaryrefslogtreecommitdiffstats
path: root/ui/rtp_stream.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-10-21 11:46:49 -0700
committerMichael Mann <mmann78@netscape.net>2015-10-22 11:46:12 +0000
commitd9e530bc177553c07bae7594e9b4f8e6235fc0e0 (patch)
tree481239fdd3662cae66a4c5110b853563be7ca1cd /ui/rtp_stream.c
parent86fe2be4dc2f5f5ff09e0d6c00277d7a9bf09ffd (diff)
Use address functions instead of ADDRESS macros in ui.
Replace CMP_ADDRESS, COPY_ADDRESS, et al with their lower-case equivalents in the ui directory. Change-Id: I10e95e66c8da5b880133452ebc484c53046e87ba Reviewed-on: https://code.wireshark.org/review/11199 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/rtp_stream.c')
-rw-r--r--ui/rtp_stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/rtp_stream.c b/ui/rtp_stream.c
index da916bb0a9..07c9e81213 100644
--- a/ui/rtp_stream.c
+++ b/ui/rtp_stream.c
@@ -143,9 +143,9 @@ gboolean rtp_stream_info_is_reverse(const rtp_stream_info_t *stream_a, rtp_strea
if (stream_a == NULL || stream_b == NULL)
return FALSE;
- if ((ADDRESSES_EQUAL(&(stream_a->src_addr), &(stream_b->dest_addr)))
+ if ((addresses_equal(&(stream_a->src_addr), &(stream_b->dest_addr)))
&& (stream_a->src_port == stream_b->dest_port)
- && (ADDRESSES_EQUAL(&(stream_a->dest_addr), &(stream_b->src_addr)))
+ && (addresses_equal(&(stream_a->dest_addr), &(stream_b->src_addr)))
&& (stream_a->dest_port == stream_b->src_port))
return TRUE;
else