aboutsummaryrefslogtreecommitdiff
path: root/ares/adig.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-10-17 19:04:53 +0000
committerYang Tse <yangsita@gmail.com>2008-10-17 19:04:53 +0000
commit63397e380f6491c3dc304079b8aa9465d2f268c1 (patch)
treea9128939d201c407e1bf284f0aaf76d5bf59e8cc /ares/adig.c
parent07c3aaeea116603f58e8ebbcf8f4f7a39e761ef7 (diff)
fix compiler warning
Diffstat (limited to 'ares/adig.c')
-rw-r--r--ares/adig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ares/adig.c b/ares/adig.c
index cc0d42d56..7df32d9f9 100644
--- a/ares/adig.c
+++ b/ares/adig.c
@@ -57,6 +57,7 @@
#include "ares.h"
#include "ares_dns.h"
#include "inet_ntop.h"
+#include "inet_net_pton.h"
#include "ares_getopt.h"
#ifndef HAVE_STRDUP
@@ -213,7 +214,7 @@ int main(int argc, char **argv)
case 's':
/* Add a server, and specify servers in the option mask. */
- if (inet_pton(AF_INET, optarg, &inaddr) <= 0)
+ if (ares_inet_pton(AF_INET, optarg, &inaddr) <= 0)
{
hostent = gethostbyname(optarg);
if (!hostent || hostent->h_addrtype != AF_INET)