From f7e900edbc368275aa7cec7ebec0986e45aeadd7 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Thu, 4 Jan 2001 04:10:59 +0000 Subject: [PATCH] 652. [bug] zone_saveunique() did not report the new name. --- CHANGES | 2 ++ lib/dns/zone.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index d604295432..e59dddfc52 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ + 652. [bug] zone_saveunique() did not report the new name. + 651. [func] The AD bit in responses now has the meaning specified in . diff --git a/lib/dns/zone.c b/lib/dns/zone.c index 0f44842981..9a250f01f3 100644 --- a/lib/dns/zone.c +++ b/lib/dns/zone.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: zone.c,v 1.286 2001/01/02 04:45:24 marka Exp $ */ +/* $Id: zone.c,v 1.287 2001/01/04 04:10:59 marka Exp $ */ #include @@ -5731,7 +5731,7 @@ zone_saveunique(dns_zone_t *zone, const char *path, const char *templat) { goto cleanup; zone_log(zone, me, ISC_LOG_INFO, "saved \"%s\" as \"%s\"", - path, templat); + path, buf); cleanup: isc_mem_put(zone->mctx, buf, buflen);