]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Wed, 23 Jan 2002 17:57:51 +0000 (17:57 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 23 Jan 2002 17:57:51 +0000 (17:57 +0000)
1166.   [bug]           "Not Implemented" should be reported as NOTIMP,
                        not NOTIMPL. [RT #2281]

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 4e9c8d4e7ac058bbaaf581c9f96ba29db0dd4611..ac0a7e7d94049ff34a1027bb7809b140d2a9cd2c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -46,6 +46,9 @@
 
 1168.  [bug]           Empty also-notify clauses were not handled. [RT #2309]
 
+1166.  [bug]           "Not Implemented" should be reported as NOTIMP,
+                       not NOTIMPL. [RT #2281]
+
 1165.  [bug]           We were rejecting notify-source{-v6} in zone clauses.
 
 1164.  [bug]           Empty masters clauses in slave / stub zones were not
index 5257a590fe994ab26914017d81a6742ee3e7a631..95930d020bb750b40bdf801d490dc9cd0e82dab1 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.c,v 1.157.2.4 2001/11/28 04:35:14 marka Exp $ */
+/* $Id: dig.c,v 1.157.2.5 2002/01/23 17:57:46 gson Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -111,7 +111,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index a2a1a330bd97113294dcecbca3335834aca4e846..b96befaa7f7c232468e45757d1695ef8e4526e19 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: host.c,v 1.76 2001/08/27 21:31:29 gson Exp $ */
+/* $Id: host.c,v 1.76.2.1 2002/01/23 17:57:47 gson Exp $ */
 
 #include <config.h>
 #include <stdlib.h>
@@ -78,7 +78,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index 627d2b008e7e63e59d50e386014ceb542f32b639..87d66b48a48fdd9d04c3e9f039b80b0d2d30b1f8 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: nslookup.c,v 1.90 2001/07/30 01:09:14 marka Exp $ */
+/* $Id: nslookup.c,v 1.90.2.1 2002/01/23 17:57:48 gson Exp $ */
 
 #include <config.h>
 
@@ -80,7 +80,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index 06d491815b524bb6d229de687770114ee451090e..ba0c5a078eeee28a827d4f06ad84036d221b9b7a 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.25.2.1 2002/01/23 17:57:49 gson Exp $ */
 
 #include <config.h>
 
@@ -51,7 +51,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",
index dad9e9ea95ee94d83d85a018a1412ec5848a947c..baca47168a857b957a38fbf5265b4a2a442c6bde 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: message.c,v 1.194.2.2 2002/01/23 03:49:20 marka Exp $ */
+/* $Id: message.c,v 1.194.2.3 2002/01/23 17:57:51 gson Exp $ */
 
 /***
  *** Imports
@@ -115,7 +115,7 @@ static const char *rcodetext[] = {
        "FORMERR",
        "SERVFAIL",
        "NXDOMAIN",
-       "NOTIMPL",
+       "NOTIMP",
        "REFUSED",
        "YXDOMAIN",
        "YXRRSET",