]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1164. [bug] "Not Implemented" should be reported as NOTIMP.
authorMark Andrews <marka@isc.org>
Wed, 19 Dec 2001 12:16:47 +0000 (12:16 +0000)
committerMark Andrews <marka@isc.org>
Wed, 19 Dec 2001 12:16:47 +0000 (12:16 +0000)
CHANGES
bin/dig/dig.c
bin/dig/host.c
bin/dig/nslookup.c
bin/tests/printmsg.c
lib/dns/message.c

diff --git a/CHANGES b/CHANGES
index 6422df36f93142e8f0b2d6cf7676bf807bd7a943..0f4c25dcf77cd6ba459c3eb351fdb92347f1687a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1164.  [bug]           "Not Implemented" should be reported as NOTIMP.
+
 1165.  [bug]           We were rejecting notify-source{-v6} in zone clauses.
 
 1164.  [bug]           Empty masters clauses in slave / stub zones were not
index 19acabc807af1c6e1b1f94d384f91410d9d656bc..231fd694ceb26ea9b2a4dda3bbc0019658e668bf 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.c,v 1.175 2001/11/30 01:58:38 gson Exp $ */
+/* $Id: dig.c,v 1.176 2001/12/19 12:16:38 marka Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -111,7 +111,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index 8f9a2127a7c12f45342cef4f967b5709af5ef384..097f0e40f123264480ee46eb87be3c3d7d057bb3 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: host.c,v 1.82 2001/11/30 01:58:40 gson Exp $ */
+/* $Id: host.c,v 1.83 2001/12/19 12:16:40 marka Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -79,7 +79,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index f5e4322d683517925bbd2f83a14e3456a7c13a1c..f601e810f9fa33105c12489da82c9c0f461645e8 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: nslookup.c,v 1.94 2001/11/30 01:02:06 gson Exp $ */
+/* $Id: nslookup.c,v 1.95 2001/12/19 12:16:42 marka Exp $ */
 
 #include <config.h>
 
@@ -76,7 +76,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index 06d491815b524bb6d229de687770114ee451090e..73705911120cd2e733d8c133a9c09671bc292d6f 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: printmsg.c,v 1.25 2001/05/09 18:47:49 bwelling Exp $ */
+/* $Id: printmsg.c,v 1.26 2001/12/19 12:16:45 marka Exp $ */
 
 #include <config.h>
 
@@ -51,7 +51,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index 056da8926b08a205f265dd9d1aa3602518c3b78c..d3085459958df0d350263a3ce102e952e3afe455 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: message.c,v 1.200 2001/12/06 04:38:47 marka Exp $ */
+/* $Id: message.c,v 1.201 2001/12/19 12:16:47 marka Exp $ */
 
 /***
  *** Imports
@@ -115,7 +115,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",