summaryrefslogtreecommitdiffstats
path: root/gst/udp
diff options
context:
space:
mode:
Diffstat (limited to 'gst/udp')
-rw-r--r--gst/udp/gstudpnetutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/udp/gstudpnetutils.c b/gst/udp/gstudpnetutils.c
index 5464ddac..58e11bdb 100644
--- a/gst/udp/gstudpnetutils.c
+++ b/gst/udp/gstudpnetutils.c
@@ -230,7 +230,7 @@ gst_udp_is_multicast (struct sockaddr_storage *addr)
{
struct sockaddr_in *addr4 = (struct sockaddr_in *) addr;
- ret = IN_MULTICAST (ntohl (addr4->sin_addr.s_addr));
+ ret = IN_MULTICAST (g_ntohl (addr4->sin_addr.s_addr));
}
break;