mirror of https://github.com/Icinga/icinga2.git
Merge pull request #7946 from Icinga/bugfix/regression-ca-verification
Fix CA verification regression
This commit is contained in:
commit
4464e4990e
|
@ -53,7 +53,7 @@ Value RequestCertificateHandler(const MessageOrigin::Ptr& origin, const Dictiona
|
||||||
|
|
||||||
String cn = GetCertificateCN(cert);
|
String cn = GetCertificateCN(cert);
|
||||||
|
|
||||||
bool signedByCA;
|
bool signedByCA = false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
signedByCA = VerifyCertificate(cacert, cert);
|
signedByCA = VerifyCertificate(cacert, cert);
|
||||||
|
|
Loading…
Reference in New Issue