diff --git a/lib/dns/config/confctx.c b/lib/dns/config/confctx.c index 59875bb766..a5450a4d34 100644 --- a/lib/dns/config/confctx.c +++ b/lib/dns/config/confctx.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: confctx.c,v 1.49 2000/04/18 00:18:36 gson Exp $ */ +/* $Id: confctx.c,v 1.50 2000/04/18 00:25:41 gson Exp $ */ #include @@ -259,7 +259,7 @@ dns_c_checkconfig(dns_c_ctx_t *cfg) if (dns_c_ctx_getauthnxdomain(cfg, &bval) == ISC_R_NOTFOUND) { isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG, DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "the default for 'auth-nxdomain' option " + "the default for the 'auth-nxdomain' option " "is now 'no'"); } diff --git a/lib/dns/config/confparser.y b/lib/dns/config/confparser.y index e82facd043..a2cb0a6400 100644 --- a/lib/dns/config/confparser.y +++ b/lib/dns/config/confparser.y @@ -16,7 +16,7 @@ * SOFTWARE. */ -/* $Id: confparser.y,v 1.65 2000/04/18 00:18:37 gson Exp $ */ +/* $Id: confparser.y,v 1.66 2000/04/18 00:25:40 gson Exp $ */ #include @@ -1285,7 +1285,7 @@ ordering_type: /* nothing */ tmpres = dns_rdatatype_fromtext(&ty, ®); if (tmpres != ISC_R_SUCCESS) { parser_warning(ISC_TRUE, - "unknown type. Assuming '*'"); + "unknown type, assuming '*'"); ty = dns_rdatatype_any; } } @@ -1532,7 +1532,7 @@ yea_or_nay: L_YES $$ = isc_boolean_false; } else { parser_warning(ISC_TRUE, - "number should be 0 or 1; assuming 1"); + "number should be 0 or 1, assuming 1"); $$ = isc_boolean_true; } } @@ -3722,7 +3722,7 @@ wild_class_name: any_string tmpres = dns_rdataclass_fromtext(&cl, ®); if (tmpres != ISC_R_SUCCESS) { parser_error(ISC_TRUE, - "unknown class assuming '*'."); + "unknown class, assuming '*'."); cl = dns_rdataclass_any; } }