mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix unbound-checkconf for control-use-cert.
git-svn-id: file:///svn/unbound/trunk@4742 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
3c7d270958
commit
b26257248d
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,7 @@
|
|||
18 June 2018: Wouter
|
||||
- Fix that control-use-cert: no works for 127.0.0.1 to disable certs.
|
||||
This fix is part of 1.7.3rc2.
|
||||
- Fix unbound-checkconf for control-use-cert.
|
||||
|
||||
15 June 2018: Wouter
|
||||
- tag for 1.7.3rc1.
|
||||
|
|
|
|||
|
|
@ -542,7 +542,8 @@ morechecks(struct config_file* cfg, const char* fname)
|
|||
# endif
|
||||
}
|
||||
#endif
|
||||
if(cfg->remote_control_enable && options_remote_is_address(cfg)) {
|
||||
if(cfg->remote_control_enable && options_remote_is_address(cfg)
|
||||
&& cfg->control_use_cert) {
|
||||
check_chroot_string("server-key-file", &cfg->server_key_file,
|
||||
cfg->chrootdir, cfg);
|
||||
check_chroot_string("server-cert-file", &cfg->server_cert_file,
|
||||
|
|
|
|||
Loading…
Reference in a new issue