From: Jan Schmidt Date: Mon, 20 Apr 2009 16:25:34 +0000 (+0100) Subject: udp: Fix a simple typo in the previous commit X-Git-Tag: RELEASE-0.10.15~260 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a097571c0a6da9d8deeedc2d613f6c730b129833;p=platform%2Fupstream%2Fgst-plugins-good.git udp: Fix a simple typo in the previous commit Use #ifdef instead of #if, to fix the build --- diff --git a/gst/udp/gstudpnetutils.c b/gst/udp/gstudpnetutils.c index 707f7fc..86c1f50 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