+ 453. [bug] Warn if the obsolete option "maintain-ixfr-base"
+ is specified in named.conf. [RT #306]
+
+ 452. [bug] Warn if the unimplemented option "statistics-file"
+ is specified in named.conf. [RT #301]
+
+ 451. [func] Update forwarding implememted.
+
445. [bug] Doing a 0 bit isc_bitstring_copy() of an lsb0
bitstring triggered a REQUIRE statement. The REQUIRE
statement was incorrect. [RT #297]
* SOFTWARE.
*/
-/* $Id: confctx.c,v 1.70.2.4 2000/09/07 19:32:15 gson Exp $ */
+/* $Id: confctx.c,v 1.70.2.5 2000/09/13 23:13:23 explorer Exp $ */
#include <config.h>
DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
"option 'dump-file' is not yet implemented");
}
-
-
+
+
+ if (dns_c_ctx_getstatsfilename(cfg, &cpval) != ISC_R_NOTFOUND) {
+ isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
+ DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
+ "option 'statistics-file' is not yet "
+ "implemented");
+ }
+
+
if (dns_c_ctx_getmemstatsfilename(cfg, &cpval) != ISC_R_NOTFOUND) {
isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
"option 'serial-queries' is not yet "
"implemented");
}
-
+
+
+ if (dns_c_ctx_getmaintainixfrbase(cfg, &uintval) != ISC_R_NOTFOUND) {
+ isc_log_write(dns_lctx, DNS_LOGCATEGORY_CONFIG,
+ DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
+ "option 'maintain-ixfr-base' is obsolete");
+ }
+
if (dns_c_ctx_getmaxlogsizeixfr(cfg, &uintval) != ISC_R_NOTFOUND) {
isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
* SOFTWARE.
*/
-/* $Id: confparser.y,v 1.99.2.4 2000/08/22 00:46:22 gson Exp $ */
+/* $Id: confparser.y,v 1.99.2.5 2000/09/13 23:13:25 explorer Exp $ */
#include <config.h>
}
| L_MAINTAIN_IXFR_BASE yea_or_nay
{
- /*
- * Backwards compatibility, treated as
- * equivalent to provide-ixfr.
- */
- tmpres = dns_c_ctx_setprovideixfr(currcfg, $2);
+ tmpres = dns_c_ctx_setmaintainixfrbase(currcfg, $2);
if (tmpres == ISC_R_EXISTS) {
parser_error(ISC_FALSE,
- "cannot redefine provide-ixfr");
+ "cannot redefine maintain-ixfr-base");
YYABORT;
}
}