From: Mark Andrews Date: Wed, 28 Apr 2004 04:07:28 +0000 (+0000) Subject: 1620. [func] When loading a zone report if it is signed. [RT #11149] X-Git-Tag: v9.2.3rc4^3~43 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=3dc3d557be91d59317b34fc5a9ae79b1925d5878;p=thirdparty%2Fbind9.git 1620. [func] When loading a zone report if it is signed. [RT #11149] --- diff --git a/CHANGES b/CHANGES index 8afd8e312ce..7bf9ba73a22 100644 --- 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] diff --git a/lib/dns/zone.c b/lib/dns/zone.c index cb914f125be..206fd4566f1 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -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 @@ -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);