Merge pull request #7946 from Icinga/bugfix/regression-ca-verification

Fix CA verification regression
This commit is contained in:
Noah Hilverling 2020-04-01 15:05:52 +02:00 committed by GitHub
commit 4464e4990e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ Value RequestCertificateHandler(const MessageOrigin::Ptr& origin, const Dictiona
String cn = GetCertificateCN(cert);
bool signedByCA;
bool signedByCA = false;
try {
signedByCA = VerifyCertificate(cacert, cert);