diff options
author | Yang Tse <yangsita@gmail.com> | 2007-10-18 17:17:18 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-10-18 17:17:18 +0000 |
commit | 8f0bef2fa04bff0ebfedb090a8cc5566a32f1c44 (patch) | |
tree | 8c6ab7471ba37f60dc56e46aa816dc55e635e0fc /ares | |
parent | 33ddeb6dccd16382ea32499604c2c03d89ccba8f (diff) |
Renamed internal function to avoid a variable shadowing it
Diffstat (limited to 'ares')
-rw-r--r-- | ares/ares_process.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ares/ares_process.c b/ares/ares_process.c index a6820de6e..d977d0937 100644 --- a/ares/ares_process.c +++ b/ares/ares_process.c @@ -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. */ |