mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 16:15:27 +00:00
consistent wording in log messages
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* SOFTWARE.
|
* 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>
|
#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) {
|
if (dns_c_ctx_getauthnxdomain(cfg, &bval) == ISC_R_NOTFOUND) {
|
||||||
isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
|
isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
|
||||||
DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
|
DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
|
||||||
"the default for 'auth-nxdomain' option "
|
"the default for the 'auth-nxdomain' option "
|
||||||
"is now 'no'");
|
"is now 'no'");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
* SOFTWARE.
|
* 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>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -1285,7 +1285,7 @@ ordering_type: /* nothing */
|
|||||||
tmpres = dns_rdatatype_fromtext(&ty, ®);
|
tmpres = dns_rdatatype_fromtext(&ty, ®);
|
||||||
if (tmpres != ISC_R_SUCCESS) {
|
if (tmpres != ISC_R_SUCCESS) {
|
||||||
parser_warning(ISC_TRUE,
|
parser_warning(ISC_TRUE,
|
||||||
"unknown type. Assuming '*'");
|
"unknown type, assuming '*'");
|
||||||
ty = dns_rdatatype_any;
|
ty = dns_rdatatype_any;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1532,7 +1532,7 @@ yea_or_nay: L_YES
|
|||||||
$$ = isc_boolean_false;
|
$$ = isc_boolean_false;
|
||||||
} else {
|
} else {
|
||||||
parser_warning(ISC_TRUE,
|
parser_warning(ISC_TRUE,
|
||||||
"number should be 0 or 1; assuming 1");
|
"number should be 0 or 1, assuming 1");
|
||||||
$$ = isc_boolean_true;
|
$$ = isc_boolean_true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3722,7 +3722,7 @@ wild_class_name: any_string
|
|||||||
tmpres = dns_rdataclass_fromtext(&cl, ®);
|
tmpres = dns_rdataclass_fromtext(&cl, ®);
|
||||||
if (tmpres != ISC_R_SUCCESS) {
|
if (tmpres != ISC_R_SUCCESS) {
|
||||||
parser_error(ISC_TRUE,
|
parser_error(ISC_TRUE,
|
||||||
"unknown class assuming '*'.");
|
"unknown class, assuming '*'.");
|
||||||
cl = dns_rdataclass_any;
|
cl = dns_rdataclass_any;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user