+1468. [func] Internal zones are nolonger for 'rndc status'.
+ [RT #4706]
+
1467. [func] $GENERATES now supports optional class and ttl.
1466. [bug] lwresd configuration errors resulted in memory
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: config.c,v 1.41 2003/02/27 05:12:47 marka Exp $ */
+/* $Id: config.c,v 1.42 2003/04/17 12:11:39 marka Exp $ */
#include <config.h>
ixfr-from-differences false;\n\
};\n\
\n\
+#\n\
+# Zones in the \"_bind\" view are NOT counted is the count of zones.\n\
+#\n\
view \"_bind\" chaos {\n\
recursion no;\n\
\n\
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: zone.c,v 1.386 2003/03/23 13:18:53 jinmei Exp $ */
+/* $Id: zone.c,v 1.387 2003/04/17 12:11:39 marka Exp $ */
#include <config.h>
case DNS_ZONESTATE_ANY:
for (zone = ISC_LIST_HEAD(zmgr->zones);
zone != NULL;
- zone = ISC_LIST_NEXT(zone, link))
+ zone = ISC_LIST_NEXT(zone, link)) {
+ dns_view_t *view = zone->view;
+ if (view != NULL && strcmp(view->name, "_bind") == 0)
+ continue;
count++;
+ }
break;
default:
INSIST(0);