]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1218. [bug] Named incorrectlty SERVFAIL rather than NOTAUTH on
authorMark Andrews <marka@isc.org>
Tue, 5 Mar 2002 00:06:02 +0000 (00:06 +0000)
committerMark Andrews <marka@isc.org>
Tue, 5 Mar 2002 00:06:02 +0000 (00:06 +0000)
                        when there was a BADTIME error. [RT #2519]

CHANGES
lib/dns/result.c

diff --git a/CHANGES b/CHANGES
index f7f9673859a90ecfe4013f8fefa088f55375c18d..50b6c49e4df8fdb33ad70cf641229c9049dfe807 100644 (file)
--- a/CHANGES
+++ b/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.
 
index 6e9e1f68580b36564100d869cc7d2ab13eabef06..6269c81f1219ed216175d058597b109b887f1f16 100644 (file)
@@ -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: