From a097571c0a6da9d8deeedc2d613f6c730b129833 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Mon, 20 Apr 2009 17:25:34 +0100 Subject: udp: Fix a simple typo in the previous commit Use #ifdef instead of #if, to fix the build --- gst/udp/gstudpnetutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/udp') diff --git a/gst/udp/gstudpnetutils.c b/gst/udp/gstudpnetutils.c index 707f7fc7..86c1f508 100644 --- a/gst/udp/gstudpnetutils.c +++ b/gst/udp/gstudpnetutils.c @@ -180,7 +180,7 @@ gst_udp_join_group (int sockfd, struct sockaddr_storage *addr, gchar * iface) mreq4.imr_multiaddr.s_addr = ((struct sockaddr_in *) addr)->sin_addr.s_addr; -#if HAVE_IP_MREQN +#ifdef HAVE_IP_MREQN if (iface) mreq4.imr_ifindex = if_nametoindex (iface); else -- cgit