diff stream/udp.c @ 27341:e7c989f7a7c9

Start unifying names of internal preprocessor directives. Replace all USE_ prefixes by CONFIG_ prefixes to indicate options which are configurable.
author diego
date Wed, 30 Jul 2008 12:01:30 +0000
parents a26e50cae389
children d788e177a35e
line wrap: on
line diff
--- a/stream/udp.c	Wed Jul 30 11:48:01 2008 +0000
+++ b/stream/udp.c	Wed Jul 30 12:01:30 2008 +0000
@@ -92,11 +92,11 @@
   else
   {
 #ifndef HAVE_WINSOCK2
-#ifdef USE_ATON
+#ifdef CONFIG_ATON
     inet_aton (url->hostname, &server_address.sin_addr);
 #else
     inet_pton (AF_INET, url->hostname, &server_address.sin_addr);
-#endif /* USE_ATON */
+#endif /* CONFIG_ATON */
 #else
     server_address.sin_addr.s_addr = htonl(INADDR_ANY);
 #endif /* HAVE_WINSOCK2 */