From 537d147d7624f9e58ce602fc0d15e984c92aaa51 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 28 Nov 2000 03:17:48 +0000 Subject: [PATCH] Allow "dialup passive" to work for stub zones. --- bin/named/notify.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/named/notify.c b/bin/named/notify.c index 12a9fe68b0..c226e79779 100644 --- a/bin/named/notify.c +++ b/bin/named/notify.c @@ -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 @@ -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;