2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

remove unused parameter from next_origin

This commit is contained in:
Mark Andrews 2011-10-29 22:26:21 +00:00
parent a9bae6c481
commit cd56981c8a

View File

@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: dighost.c,v 1.340 2011/03/11 06:11:20 marka Exp $ */ /* $Id: dighost.c,v 1.341 2011/10/29 22:26:21 marka Exp $ */
/*! \file /*! \file
* \note * \note
@ -1838,12 +1838,10 @@ followup_lookup(dns_message_t *msg, dig_query_t *query, dns_section_t section)
* Return ISC_TRUE iff there was another searchlist entry. * Return ISC_TRUE iff there was another searchlist entry.
*/ */
static isc_boolean_t static isc_boolean_t
next_origin(dns_message_t *msg, dig_query_t *query) { next_origin(dig_query_t *query) {
dig_lookup_t *lookup; dig_lookup_t *lookup;
dig_searchlist_t *search; dig_searchlist_t *search;
UNUSED(msg);
INSIST(!free_now); INSIST(!free_now);
debug("next_origin()"); debug("next_origin()");
@ -3360,7 +3358,7 @@ recv_done(isc_task_t *task, isc_event_t *event) {
if (!l->doing_xfr || l->xfr_q == query) { if (!l->doing_xfr || l->xfr_q == query) {
if (msg->rcode != dns_rcode_noerror && if (msg->rcode != dns_rcode_noerror &&
(l->origin != NULL || l->need_search)) { (l->origin != NULL || l->need_search)) {
if (!next_origin(msg, query) || showsearch) { if (!next_origin(query) || showsearch) {
printmessage(query, msg, ISC_TRUE); printmessage(query, msg, ISC_TRUE);
received(b->used, &sevent->address, query); received(b->used, &sevent->address, query);
} }