diff options
Diffstat (limited to 'gst/udp')
-rw-r--r-- | gst/udp/gstudpsrc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index d60a01490..0f22a76ca 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -128,7 +128,7 @@ /* Required for other parts of in_pktinfo / in6_pktinfo but only * on non-Windows and can be included after glib.h */ -#ifndef G_OS_WIN32 +#ifndef G_PLATFORM_WIN32 #include <netinet/ip.h> #endif @@ -157,7 +157,7 @@ struct _GstIPPktinfoMessage GSocketControlMessage parent; guint ifindex; -#ifndef G_OS_WIN32 +#ifndef G_PLATFORM_WIN32 #ifndef __NetBSD__ struct in_addr spec_dst; #endif @@ -203,7 +203,7 @@ gst_ip_pktinfo_message_deserialize (gint level, message = g_object_new (GST_TYPE_IP_PKTINFO_MESSAGE, NULL); message->ifindex = pktinfo->ipi_ifindex; -#ifndef G_OS_WIN32 +#ifndef G_PLATFORM_WIN32 #ifndef __NetBSD__ message->spec_dst = pktinfo->ipi_spec_dst; #endif |