]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1620. [func] When loading a zone report if it is signed. [RT #11149]
authorMark Andrews <marka@isc.org>
Wed, 28 Apr 2004 04:07:28 +0000 (04:07 +0000)
committerMark Andrews <marka@isc.org>
Wed, 28 Apr 2004 04:07:28 +0000 (04:07 +0000)
CHANGES
lib/dns/zone.c

diff --git a/CHANGES b/CHANGES
index 8afd8e312ceb929afedd0289f1cfecaabb1c2833..7bf9ba73a2223a3d74a913f946c45348de4f5aef 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,7 +4,7 @@
 
 1621.  [placeholder]   rt11156
 
-1620.  [placeholder]   rt11149
+1620.  [func]          When loading a zone report if it is signed. [RT #11149]
 
 1619.  [bug]           Missing ISC_LIST_UNLINK in end_reserved_dispatches().
                        [RT# 11118]
index cb914f125be41e455f50beaa824a581057e46f01..206fd4566f15008ada37c11189c26c893ced095c 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.c,v 1.411 2004/03/30 02:13:44 marka Exp $ */
+/* $Id: zone.c,v 1.412 2004/04/28 04:07:28 marka Exp $ */
 
 #include <config.h>
 
@@ -1430,7 +1430,9 @@ zone_postload(dns_zone_t *zone, dns_db_t *db, isc_time_t loadtime,
                zone_settimer(zone, &now);
 
        if (! dns_db_ispersistent(db))
-               dns_zone_log(zone, ISC_LOG_INFO, "loaded serial %u", zone->serial);
+               dns_zone_log(zone, ISC_LOG_INFO, "loaded serial %u%s",
+                            zone->serial,
+                            dns_db_issecure(db) ? " (signed)" : "");
 
        return (result);