mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +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:
3
CHANGES
3
CHANGES
@@ -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
|
1528. [cleanup] Simplify some dns_name_ functions based on the
|
||||||
deprecation of bitstring labels.
|
deprecation of bitstring labels.
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* 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>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -2926,6 +2926,12 @@ zone_notify(dns_zone_t *zone) {
|
|||||||
UNLOCK_ZONE(zone);
|
UNLOCK_ZONE(zone);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!loggednotify) {
|
||||||
|
notify_log(zone, ISC_LOG_INFO,
|
||||||
|
"sending notifies (serial %u)",
|
||||||
|
serial);
|
||||||
|
loggednotify = ISC_TRUE;
|
||||||
|
}
|
||||||
notify = NULL;
|
notify = NULL;
|
||||||
}
|
}
|
||||||
UNLOCK_ZONE(zone);
|
UNLOCK_ZONE(zone);
|
||||||
|
Reference in New Issue
Block a user