mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 22:52:06 -04:00
consistently use single quotes around quoted text in log messages
This commit is contained in:
parent
aa6003d0eb
commit
a6535a2681
5 changed files with 7 additions and 7 deletions
|
|
@ -68,7 +68,7 @@ convert_named_acl(char *aclname, dns_c_ctx_t *cctx,
|
|||
if (result != DNS_R_SUCCESS) {
|
||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_SECURITY,
|
||||
DNS_LOGMODULE_ACL, ISC_LOG_WARNING,
|
||||
"undefined ACL \"%s\"", aclname);
|
||||
"undefined ACL '%s'", aclname);
|
||||
return (result);
|
||||
}
|
||||
result = dns_acl_fromconfig(cacl->ipml, cctx, ctx, mctx, &dacl);
|
||||
|
|
|
|||
|
|
@ -200,7 +200,7 @@ parse_command_line(int argc, char *argv[]) {
|
|||
case 'p':
|
||||
port = atoi(isc_commandline_argument);
|
||||
if (port < 1 || port > 65535)
|
||||
ns_main_earlyfatal("port \"%s\" out of range",
|
||||
ns_main_earlyfatal("port '%s' out of range",
|
||||
isc_commandline_argument);
|
||||
ns_g_port = port;
|
||||
break;
|
||||
|
|
@ -221,7 +221,7 @@ parse_command_line(int argc, char *argv[]) {
|
|||
break;
|
||||
case '?':
|
||||
usage();
|
||||
ns_main_earlyfatal("unknown option `-%c'",
|
||||
ns_main_earlyfatal("unknown option '-%c'",
|
||||
isc_commandline_option);
|
||||
default:
|
||||
ns_main_earlyfatal("parsing options returned %d", ch);
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: rndc.c,v 1.4 2000/02/01 19:01:02 tale Exp $ */
|
||||
/* $Id: rndc.c,v 1.5 2000/03/01 22:41:22 gson Exp $ */
|
||||
|
||||
/*
|
||||
* Principal Author: DCL
|
||||
|
|
@ -353,7 +353,7 @@ main(int argc, char **argv) {
|
|||
}
|
||||
|
||||
if (result == ISC_R_NOTIMPLEMENTED)
|
||||
fprintf(stderr, "%s: \"%s\" is not yet implemented\n",
|
||||
fprintf(stderr, "%s: '%s' is not yet implemented\n",
|
||||
progname, command);
|
||||
|
||||
else if (result != ISC_R_SUCCESS)
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ convert_named_acl(char *aclname, dns_c_ctx_t *cctx,
|
|||
if (result != DNS_R_SUCCESS) {
|
||||
isc_log_write(dns_lctx, DNS_LOGCATEGORY_SECURITY,
|
||||
DNS_LOGMODULE_ACL, ISC_LOG_WARNING,
|
||||
"undefined ACL \"%s\"", aclname);
|
||||
"undefined ACL '%s'", aclname);
|
||||
return (result);
|
||||
}
|
||||
result = dns_acl_fromconfig(cacl->ipml, cctx, ctx, mctx, &dacl);
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@ dns_c_checkconfig(dns_c_ctx_t *ctx)
|
|||
if ((dns_c_ctx_getauthnxdomain(ctx, &bval)) == ISC_R_NOTFOUND) {
|
||||
isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG,
|
||||
DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING,
|
||||
"the default for auth-nxdomain is now ``no''");
|
||||
"the default for auth-nxdomain is now 'no'");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue