2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

1529. [bug] "notify explict;" failed to log that NOTIFY messages

were being sent for the zone. [RT# 9442]
This commit is contained in:
Mark Andrews
2003-11-03 23:40:24 +00:00
parent 56484c0f85
commit 2eb9c41504
2 changed files with 9 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
1529. [placeholder]
1529. [bug] "notify explict;" failed to log that NOTIFY messages
were being sent for the zone.
1528. [cleanup] Simplify some dns_name_ functions based on the
deprecation of bitstring labels.

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zone.c,v 1.400 2003/10/17 03:46:44 marka Exp $ */
/* $Id: zone.c,v 1.401 2003/11/03 23:40:24 marka Exp $ */
#include <config.h>
@@ -2926,6 +2926,12 @@ zone_notify(dns_zone_t *zone) {
UNLOCK_ZONE(zone);
return;
}
if (!loggednotify) {
notify_log(zone, ISC_LOG_INFO,
"sending notifies (serial %u)",
serial);
loggednotify = ISC_TRUE;
}
notify = NULL;
}
UNLOCK_ZONE(zone);