]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1863. [bug] rrset-order fixed error messages not complete.
authorMark Andrews <marka@isc.org>
Fri, 27 May 2005 00:49:19 +0000 (00:49 +0000)
committerMark Andrews <marka@isc.org>
Fri, 27 May 2005 00:49:19 +0000 (00:49 +0000)
CHANGES
lib/bind9/check.c

diff --git a/CHANGES b/CHANGES
index b636576dc057c62b0318800888bf533b51de1bc5..42fcdafd32445e3cecc4b62c86ec7cd680a5e39b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1863.  [bug]           rrset-order "fixed" error messages not complete.
+
 1862.  [func]          Add additional zone data constancy checks.
                        named-checkzone has extended checking of NS, MX and 
                        SRV record and the hosts they reference.
index af63de774f434e01135291e69655375e7bf1b15a..60372c20f8e087ab098ffc5074460b13d0c0e5c6 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: check.c,v 1.58 2005/05/19 04:59:02 marka Exp $ */
+/* $Id: check.c,v 1.59 2005/05/27 00:49:19 marka Exp $ */
 
 /*! \file */
 
@@ -123,7 +123,7 @@ check_orderent(cfg_obj_t *ent, isc_log_t *logctx) {
                result = ISC_R_FAILURE;
        } else if (strcasecmp(cfg_obj_asstring(obj), "fixed") == 0) {
                cfg_obj_log(obj, logctx, ISC_LOG_WARNING,
-                           "rrset-order: order 'fixed' not implemented");
+                           "rrset-order: order 'fixed' not fully implemented");
        } else if (/* strcasecmp(cfg_obj_asstring(obj), "fixed") != 0 && */
                   strcasecmp(cfg_obj_asstring(obj), "random") != 0 &&
                   strcasecmp(cfg_obj_asstring(obj), "cyclic") != 0) {