mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 23:02:05 -04:00
1218. [bug] Named incorrectlty SERVFAIL rather than NOTAUTH on
when there was a BADTIME error. [RT #2519]
This commit is contained in:
parent
2211bec6a0
commit
95b604c5e9
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1218. [bug] Named incorrectlty SERVFAIL rather than NOTAUTH on
|
||||
when there was a BADTIME error. [RT #2519]
|
||||
|
||||
1217. [func] Report locations of previous key definition when a
|
||||
duplicate is detected.
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: result.c,v 1.95 2002/02/20 03:34:21 marka Exp $ */
|
||||
/* $Id: result.c,v 1.96 2002/03/05 00:06:02 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -233,6 +233,7 @@ dns_result_torcode(isc_result_t result) {
|
|||
rcode = dns_rcode_refused;
|
||||
break;
|
||||
case DNS_R_TSIGVERIFYFAILURE:
|
||||
case DNS_R_CLOCKSKEW:
|
||||
rcode = dns_rcode_notauth;
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Reference in a new issue