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

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.)
This commit is contained in:
Michael Sawyer 2000-10-16 21:14:29 +00:00
parent b88fd265d1
commit ce82008f65

View File

@ -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.233 2000/10/16 04:05:43 marka Exp $ */ /* $Id: zone.c,v 1.234 2000/10/16 21:14:29 mws Exp $ */
#include <config.h> #include <config.h>
@ -2104,7 +2104,9 @@ notify_create(isc_mem_t *mctx, unsigned int flags, dns_notify_t **notifyp) {
notify->mctx = NULL; notify->mctx = NULL;
isc_mem_attach(mctx, &notify->mctx); isc_mem_attach(mctx, &notify->mctx);
#ifndef NOMINUM_PUBLIC
notify->flags = flags; notify->flags = flags;
#endif /* NOMINUM_PUBLIC */
notify->zone = NULL; notify->zone = NULL;
notify->find = NULL; notify->find = NULL;
notify->request = NULL; notify->request = NULL;