From 02fd64a1fc21340fce788a6bcc01d15eb37e9160 Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Thu, 23 Mar 2000 00:51:29 +0000 Subject: [PATCH] put single quote around logging channel name in error message --- bin/named/logconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/named/logconf.c b/bin/named/logconf.c index b37fbd1216..ff598b4aac 100644 --- a/bin/named/logconf.c +++ b/bin/named/logconf.c @@ -56,7 +56,7 @@ category_fromconf(dns_c_logcat_t *ccat, isc_logconfig_t *lctx) if (result != ISC_R_SUCCESS) { isc_log_write(ns_g_lctx, DNS_LOGCATEGORY_CONFIG, NS_LOGMODULE_SERVER, ISC_LOG_ERROR, - "logging channel %s: %s", channelname, + "logging channel '%s': %s", channelname, isc_result_totext(result)); return (result); }