(dns_lookup_int): send rr_class to res_search

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5255 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1998-11-26 22:42:51 +00:00
parent e90f9ad230
commit 42d2c5c26d

View File

@@ -241,7 +241,8 @@ parse_reply(unsigned char *data, int len)
return r;
}
static dns_lookup_int(const char *domain, int rr_class, int rr_type)
static int
dns_lookup_int(const char *domain, int rr_class, int rr_type)
{
unsigned char reply[1024];
int len;
@@ -253,7 +254,7 @@ static dns_lookup_int(const char *domain, int rr_class, int rr_type)
_res.options |= RES_DEBUG;
fprintf(stderr, "dns_lookup(%s, %s)\n", domain, type_name);
}
len = res_search(domain, rr_type, rr_type, reply, sizeof(reply));
len = res_search(domain, rr_class, rr_type, reply, sizeof(reply));
if (_resolve_debug) {
_res.options = old_options;
fprintf(stderr, "dns_lookup(%s, %s) --> %d\n", domain, type_name, len);