Skip to content
Snippets Groups Projects
Commit de51a91d authored by Mark Spencer's avatar Mark Spencer
Browse files

Fix for uclibc

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2693 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 97dd838c
No related branches found
No related tags found
No related merge requests found
......@@ -162,8 +162,13 @@ int ast_search_dns(void *context,
int res, ret = -1;
#ifdef linux
res_ninit(&dnsstate);
res = res_nsearch(&dnsstate, dname, class, type, answer, sizeof(answer));
#ifndef __UCLIBC__
res_ninit(&dnsstate);
res = res_nsearch(&dnsstate, dname, class, type, answer, sizeof(answer));
#else
res_init();
res = res_search(dname, class, type, answer, sizeof(answer));
#endif
#else
res_init();
res = res_search(dname, class, type, answer, sizeof(answer));
......@@ -181,7 +186,11 @@ int ast_search_dns(void *context,
ret = 1;
}
#if defined(linux)
res_nclose(&dnsstate);
#ifndef __UCLIBC__
res_nclose(&dnsstate);
#else
res_close();
#endif
#else
#ifndef __APPLE__
res_close();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment