From 2c64908ae0d5b5a1cfead295d7526e7be550d3d3 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 30 Aug 2001 05:10:55 +0000 Subject: [PATCH] DNS_R_NOTAUTHORITATIVE --- lib/dns/include/dns/result.h | 5 +++-- lib/dns/result.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/dns/include/dns/result.h b/lib/dns/include/dns/result.h index 682e8de616..8f20246b47 100644 --- a/lib/dns/include/dns/result.h +++ b/lib/dns/include/dns/result.h @@ -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 @@ -114,8 +114,9 @@ #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. diff --git a/lib/dns/result.c b/lib/dns/result.c index a4aead7f06..56656580fd 100644 --- a/lib/dns/result.c +++ b/lib/dns/result.c @@ -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 @@ -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] = {