summaryrefslogtreecommitdiff
path: root/adig.c
diff options
context:
space:
mode:
Diffstat (limited to 'adig.c')
-rw-r--r--adig.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/adig.c b/adig.c
index cc0d42d..7df32d9 100644
--- a/adig.c
+++ b/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)