]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
Renamed internal function to avoid a variable shadowing it
authorYang Tse <yangsita@gmail.com>
Thu, 18 Oct 2007 17:17:18 +0000 (17:17 +0000)
committerYang Tse <yangsita@gmail.com>
Thu, 18 Oct 2007 17:17:18 +0000 (17:17 +0000)
ares/ares_process.c

index a6820de6e55d05ef5d8e3208a63feb27da4501a0..d977d0937f659bab6087a8f70ae9425aeaea4e09 100644 (file)
@@ -725,10 +725,10 @@ void ares__send_query(ares_channel channel, struct query *query, time_t now)
 }
 
 /*
- * nonblock() set the given socket to either blocking or non-blocking mode
+ * setsocknonblock sets the given socket to either blocking or non-blocking mode
  * based on the 'nonblock' boolean argument. This function is highly portable.
  */
-static int nonblock(ares_socket_t sockfd,    /* operate on this */
+static int setsocknonblock(ares_socket_t sockfd,    /* operate on this */
                     int nonblock   /* TRUE or FALSE */)
 {
 #undef SETBLOCK
@@ -798,7 +798,7 @@ static int nonblock(ares_socket_t sockfd,    /* operate on this */
 
 static int configure_socket(int s, ares_channel channel)
 {
-  nonblock(s, TRUE);
+  setsocknonblock(s, TRUE);
 
 #if defined(FD_CLOEXEC) && !defined(MSDOS)
   /* Configure the socket fd as close-on-exec. */