From 3bd5170d0cb52dd512077a58386fd500032ad7ee Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Wed, 13 Sep 2000 23:00:16 +0000 Subject: [PATCH] do not treat maintain-ixfr-base as equivalent to provide-ixfr, since it's not documented that way --- lib/dns/config/confparser.y.dirty | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/lib/dns/config/confparser.y.dirty b/lib/dns/config/confparser.y.dirty index a94617fb65..26aa060559 100644 --- a/lib/dns/config/confparser.y.dirty +++ b/lib/dns/config/confparser.y.dirty @@ -16,7 +16,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: confparser.y.dirty,v 1.14 2000/08/28 05:51:16 marka Exp $ */ +/* $Id: confparser.y.dirty,v 1.15 2000/09/13 23:00:16 gson Exp $ */ #include @@ -822,14 +822,10 @@ option: /* Empty */ } | 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; } }