(fp_nquery): Call __res_ninit not __res_init.

This commit is contained in:
Ulrich Drepper 2001-03-14 22:27:30 +00:00
parent cd6e89b285
commit 3d3e1ac077
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ fp_query(const u_char *msg, FILE *file) {
void
fp_nquery(const u_char *msg, int len, FILE *file) {
if ((_res.options & RES_INIT) == 0 && res_init() == -1)
if ((_res.options & RES_INIT) == 0 && __res_ninit(&_res) == -1)
return;
res_pquery(&_res, msg, len, file);