From: Wouter Wijngaards Date: Tue, 6 Jan 2015 14:54:38 +0000 (+0000) Subject: - coded the default of control-use-cert, to yes. X-Git-Tag: release-1.5.2rc1~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=047de3e1ee38be0acade526be094d3fab316901e;p=thirdparty%2Funbound.git - coded the default of control-use-cert, to yes. git-svn-id: file:///svn/unbound/trunk@3309 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 27ac55d1b..cf2622b9e 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -4,6 +4,7 @@ Smorgrav, Ilya Bakulin. Use control-interface: /path/sock and control-use-cert: no. - Fixup that patch and uid lookup (only for daemon). + - coded the default of control-use-cert, to yes. 5 January 2015: Wouter - getauxval test for ppc64 linux compatibility. diff --git a/util/config_file.c b/util/config_file.c index 12b00c9e4..3554e3fa0 100644 --- a/util/config_file.c +++ b/util/config_file.c @@ -201,6 +201,7 @@ config_create(void) cfg->remote_control_enable = 0; cfg->control_ifs = NULL; cfg->control_port = UNBOUND_CONTROL_PORT; + cfg->remote_control_use_cert = 1; cfg->minimal_responses = 0; cfg->rrset_roundrobin = 0; cfg->max_udp_size = 4096;