revert to gethostbyname for the moment

This commit is contained in:
Doug MacEachern 2006-03-03 00:21:11 +00:00
parent 5c26b463d9
commit a676b8c845
1 changed files with 1 additions and 2 deletions

View File

@ -1585,7 +1585,6 @@ struct hostent *sigar_gethostbyname(const char *name,
SIGAR_DECLARE(int) sigar_fqdn_get(sigar_t *sigar, char *name, int namelen)
{
sigar_hostent_t data;
struct hostent *p;
char domain[SIGAR_FQDN_LEN + 1];
#ifdef WIN32
@ -1611,7 +1610,7 @@ SIGAR_DECLARE(int) sigar_fqdn_get(sigar_t *sigar, char *name, int namelen)
}
/* XXX use _r versions of these functions. */
if (!(p = sigar_gethostbyname(name, &data))) {
if (!(p = gethostbyname(name))) {
if (SIGAR_LOG_IS_DEBUG(sigar)) {
sigar_log_printf(sigar, SIGAR_LOG_DEBUG,
"[fqdn] gethostbyname(%s) failed: %s",