DNS lookups for partially qualified hosts didn't work right. I was trying

to be clever by avoiding the 'check all domains in the search list'
cycle in certain cases, but this would lose if handed a name like
"foo.ctr" which refers to an FQDN of "foo.ctr.columbia.edu". If
"columbia.edu" is in the search list in /etc/resolv.conf then the
DNS lookup code should resolve it, but it didn't.
This commit is contained in:
Bill Paul 1998-08-10 19:43:33 +00:00
parent 0c61bd3a7d
commit 9e8aac2526
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38234

View File

@ -32,7 +32,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: yp_dnslookup.c,v 1.13 1997/10/29 07:25:02 charnier Exp $";
"$Id: yp_dnslookup.c,v 1.14 1998/06/09 05:06:27 imp Exp $";
#endif /* not lint */
/*
@ -456,10 +456,7 @@ ypstat yp_async_lookup_name(rqstp, name)
if (q->prot_type == SOCK_DGRAM)
q->xid = svcudp_get_xid(q->xprt);
q->client_addr = q->xprt->xp_raddr;
if (!strchr(name, '.'))
q->domain = _res.dnsrch;
else
q->domain = NULL;
q->domain = _res.dnsrch;
q->id = yp_send_dns_query(name, q->type);
if (q->id == 0) {