2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Allow "dialup passive" to work for stub zones.

This commit is contained in:
Mark Andrews 2000-11-28 03:17:48 +00:00
parent 8a711bcd39
commit 537d147d76

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: notify.c,v 1.20 2000/08/01 01:11:54 tale Exp $ */
/* $Id: notify.c,v 1.21 2000/11/28 03:17:48 marka Exp $ */
#include <config.h>
@ -179,6 +179,7 @@ ns_notify_start(ns_client_t *client) {
switch(dns_zone_gettype(zone)) {
case dns_zone_master:
case dns_zone_slave:
case dns_zone_stub: /* Allow dialup passive to work. */
respond(client, dns_zone_notifyreceive(zone,
ns_client_getsockaddr(client), request));
break;