]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
DNS_R_NOTAUTHORITATIVE
authorMark Andrews <marka@isc.org>
Thu, 30 Aug 2001 05:10:55 +0000 (05:10 +0000)
committerMark Andrews <marka@isc.org>
Thu, 30 Aug 2001 05:10:55 +0000 (05:10 +0000)
lib/dns/include/dns/result.h
lib/dns/result.c

index 682e8de616e5f51776a50e335118cc767ac8aaf0..8f20246b4794da880507329af985865758251097 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: result.h,v 1.81 2001/05/10 17:51:49 gson Exp $ */
+/* $Id: result.h,v 1.82 2001/08/30 05:10:54 marka Exp $ */
 
 #ifndef DNS_RESULT_H
 #define DNS_RESULT_H 1
 #define DNS_R_UNKNOWNPROTO             (ISC_RESULTCLASS_DNS + 75)
 #define DNS_R_CLOCKSKEW                        (ISC_RESULTCLASS_DNS + 76)
 #define DNS_R_BADIXFR                  (ISC_RESULTCLASS_DNS + 77)
+#define DNS_R_NOTAUTHORITATIVE         (ISC_RESULTCLASS_DNS + 78)
 
-#define DNS_R_NRESULTS                 78      /* Number of results */
+#define DNS_R_NRESULTS                 79      /* Number of results */
 
 /*
  * DNS wire format rcodes.
index a4aead7f06d67f74eeb454cb3a1fea9f96f971c6..56656580fdb206d26328debb07ebe5d26ed6718e 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: result.c,v 1.90 2001/06/08 19:37:29 bwelling Exp $ */
+/* $Id: result.c,v 1.91 2001/08/30 05:10:55 marka Exp $ */
 
 #include <config.h>
 
@@ -118,7 +118,8 @@ static const char *text[DNS_R_NRESULTS] = {
 
        "unknown protocol",                    /* 75 DNS_R_UNKNOWNPROTO      */
        "clocks are unsynchronized",           /* 76 DNS_R_CLOCKSKEW         */
-       "IXFR failed"                          /* 77 DNS_R_BADIXFR           */
+       "IXFR failed",                         /* 77 DNS_R_BADIXFR           */
+       "not authoritative"                    /* 78 DNS_R_NOTAUTHORITATIVE  */
 };
 
 static const char *rcode_text[DNS_R_NRCODERESULTS] = {