From: Michael Sawyer Date: Mon, 16 Oct 2000 21:14:29 +0000 (+0000) Subject: The change made in patch 233 was breaking preventing the server from X-Git-Tag: v9.0.1^4~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce82008f65d5beebfb8c34a80ed05dfb832f094c;p=thirdparty%2Fbind9.git The change made in patch 233 was breaking preventing the server from being built when sanitized. Since there is no obvious reason for notify->flags to be hidden behind sanitize ifdefs, move it public. (Lots of places which referred to ->flags were not sanitized out.) --- diff --git a/lib/dns/zone.c b/lib/dns/zone.c index ee439671e41..084a4fd03ab 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.233 2000/10/16 04:05:43 marka Exp $ */ +/* $Id: zone.c,v 1.234 2000/10/16 21:14:29 mws Exp $ */ #include @@ -2104,7 +2104,9 @@ notify_create(isc_mem_t *mctx, unsigned int flags, dns_notify_t **notifyp) { notify->mctx = NULL; isc_mem_attach(mctx, ¬ify->mctx); +#ifndef NOMINUM_PUBLIC notify->flags = flags; +#endif /* NOMINUM_PUBLIC */ notify->zone = NULL; notify->find = NULL; notify->request = NULL;