From: Wouter Wijngaards Date: Wed, 5 Jul 2017 06:59:45 +0000 (+0000) Subject: - Fix 1332: Bump verbosity of failed chown'ing of the control socket. X-Git-Tag: release-1.6.6rc1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=522bff52fe2da261a34910e98ace681896bc1797;p=thirdparty%2Funbound.git - Fix 1332: Bump verbosity of failed chown'ing of the control socket. git-svn-id: file:///svn/unbound/trunk@4262 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/daemon/remote.c b/daemon/remote.c index 74c668eec..89607d3a3 100644 --- a/daemon/remote.c +++ b/daemon/remote.c @@ -367,7 +367,7 @@ add_open(const char* ip, int nr, struct listen_port** list, int noproto_is_err, if (cfg->username && cfg->username[0] && cfg_uid != (uid_t)-1) { if(chown(ip, cfg_uid, cfg_gid) == -1) - log_err("cannot chown %u.%u %s: %s", + verbose(VERB_QUERY, "cannot chown %u.%u %s: %s", (unsigned)cfg_uid, (unsigned)cfg_gid, ip, strerror(errno)); } diff --git a/doc/Changelog b/doc/Changelog index e9510a5bc..2bdaed379 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +4 July 2017: Wouter + - Fix 1332: Bump verbosity of failed chown'ing of the control socket. + 3 July 2017: Wouter - Fix for unbound-checkconf, check ipsecmod-hook if ipsecmod is turned on.