udp: Fix a simple typo in the previous commit
authorJan Schmidt <thaytan@noraisin.net>
Mon, 20 Apr 2009 16:25:34 +0000 (17:25 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Mon, 20 Apr 2009 16:26:11 +0000 (17:26 +0100)
Use #ifdef instead of #if, to fix the build

gst/udp/gstudpnetutils.c

index 707f7fc..86c1f50 100644 (file)
@@ -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