mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 08:10:30 -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
|
18 June 2018: Wouter
|
||||||
- Fix that control-use-cert: no works for 127.0.0.1 to disable certs.
|
- Fix that control-use-cert: no works for 127.0.0.1 to disable certs.
|
||||||
This fix is part of 1.7.3rc2.
|
This fix is part of 1.7.3rc2.
|
||||||
|
- Fix unbound-checkconf for control-use-cert.
|
||||||
|
|
||||||
15 June 2018: Wouter
|
15 June 2018: Wouter
|
||||||
- tag for 1.7.3rc1.
|
- tag for 1.7.3rc1.
|
||||||
|
|
|
||||||
|
|
@ -542,7 +542,8 @@ morechecks(struct config_file* cfg, const char* fname)
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
#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,
|
check_chroot_string("server-key-file", &cfg->server_key_file,
|
||||||
cfg->chrootdir, cfg);
|
cfg->chrootdir, cfg);
|
||||||
check_chroot_string("server-cert-file", &cfg->server_cert_file,
|
check_chroot_string("server-cert-file", &cfg->server_cert_file,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue