diff options
| author | Doug Barton <dougb@FreeBSD.org> | 2011-09-01 05:24:42 +0000 |
|---|---|---|
| committer | Doug Barton <dougb@FreeBSD.org> | 2011-09-01 05:24:42 +0000 |
| commit | ec84331f94b7065559939a5aff7347596bedbccd (patch) | |
| tree | f929ac955ed5ffe7020bc29e63139cb1c4d71c57 /lib/dns/xfrin.c | |
| parent | 91c9e506e5675dfd27b76407ff9a999733b62de4 (diff) | |
Notes
Diffstat (limited to 'lib/dns/xfrin.c')
| -rw-r--r-- | lib/dns/xfrin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/dns/xfrin.c b/lib/dns/xfrin.c index 210bca9f831fc..f87344b1e5ff5 100644 --- a/lib/dns/xfrin.c +++ b/lib/dns/xfrin.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: xfrin.c,v 1.166.522.2.2.1 2011-06-02 23:47:35 tbox Exp $ */ +/* $Id: xfrin.c,v 1.166.522.4 2011-03-11 06:47:06 marka Exp $ */ /*! \file */ @@ -1247,7 +1247,7 @@ xfrin_recv_done(isc_task_t *task, isc_event_t *ev) { result = DNS_R_UNEXPECTEDID; if (xfr->reqtype == dns_rdatatype_axfr || xfr->reqtype == dns_rdatatype_soa) - FAIL(result); + goto failure; xfrin_log(xfr, ISC_LOG_DEBUG(3), "got %s, retrying with AXFR", isc_result_totext(result)); try_axfr: @@ -1283,7 +1283,7 @@ xfrin_recv_done(isc_task_t *task, isc_event_t *ev) { if (result != ISC_R_SUCCESS) { xfrin_log(xfr, ISC_LOG_DEBUG(3), "TSIG check failed: %s", isc_result_totext(result)); - FAIL(result); + goto failure; } for (result = dns_message_firstname(msg, DNS_SECTION_ANSWER); |
