mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
resolv: Call _res_hconf_init from __res_vinit
Many callers of __res_maybe_init also call _res_hconf_init. Additional calls to the latter do not hurt because the function does its work only once. (/etc/hosts.conf is not reloaded or even checked for changes.) This means that we can simplify the code by calling _res_hconf_init directly from __res_vinit.
This commit is contained in:
@ -85,6 +85,7 @@
|
||||
#include <ctype.h>
|
||||
#include <netdb.h>
|
||||
#include <resolv/resolv-internal.h>
|
||||
#include <res_hconf.h>
|
||||
#include <stdio.h>
|
||||
#include <stdio_ext.h>
|
||||
#include <stdlib.h>
|
||||
@ -430,6 +431,9 @@ res_vinit_1 (res_state statp, bool preinit, FILE *fp, char **buffer)
|
||||
int
|
||||
__res_vinit (res_state statp, int preinit)
|
||||
{
|
||||
/* Ensure that /etc/hosts.conf has been loaded (once). */
|
||||
_res_hconf_init ();
|
||||
|
||||
FILE *fp = fopen (_PATH_RESCONF, "rce");
|
||||
if (fp == NULL)
|
||||
switch (errno)
|
||||
|
Reference in New Issue
Block a user