char *buffer = (char *) alloca (buflen);
struct hostent resultbuf;
struct hostent *hst;
- uid_t oldeuid = 0;
bool use_malloc = false;
int errval = 0;
dbg_log (_("Reloading \"%s\" in hosts cache!"), (char *) str);
}
+#if 0
+ uid_t oldeuid = 0;
if (db->secure)
{
oldeuid = geteuid ();
pthread_seteuid_np (uid);
}
+#endif
while (lookup (req->type, key, &resultbuf, buffer, buflen, &hst) != 0
&& h_errno == NETDB_INTERNAL
buffer = (char *) extend_alloca (buffer, buflen, buflen + INCR);
}
+#if 0
if (db->secure)
pthread_seteuid_np (oldeuid);
+#endif
cache_addhst (db, fd, req, key, hst, uid, he, dh,
h_errno == TRY_AGAIN ? errval : 0);