2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

consistent wording in log messages

This commit is contained in:
Andreas Gustafsson
2000-04-18 00:25:41 +00:00
parent e0d1050c57
commit 7ead3746f8
2 changed files with 6 additions and 6 deletions

View File

@@ -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 <config.h>
@@ -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'");
}

View File

@@ -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 <config.h>
@@ -1285,7 +1285,7 @@ ordering_type: /* nothing */
tmpres = dns_rdatatype_fromtext(&ty, &reg);
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, &reg);
if (tmpres != ISC_R_SUCCESS) {
parser_error(ISC_TRUE,
"unknown class assuming '*'.");
"unknown class, assuming '*'.");
cl = dns_rdataclass_any;
}
}