diff options
Diffstat (limited to 'ares/ahost.c')
-rw-r--r-- | ares/ahost.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ares/ahost.c b/ares/ahost.c index 46ec735a7..0e6797e11 100644 --- a/ares/ahost.c +++ b/ares/ahost.c @@ -77,6 +77,13 @@ int main(int argc, char **argv) WSAStartup(wVersionRequested, &wsaData); #endif + status = ares_library_init(ARES_LIB_INIT_ALL); + if (status != ARES_SUCCESS) + { + fprintf(stderr, "ares_library_init: %s\n", ares_strerror(status)); + return 1; + } + while ((c = ares_getopt(argc,argv,"dt:h")) != -1) { switch (c) @@ -147,6 +154,8 @@ int main(int argc, char **argv) ares_destroy(channel); + ares_library_cleanup(); + #ifdef USE_WINSOCK WSACleanup(); #endif |