IpcIoClaimMemoryNeedsRr::run(const RunnerRegistry &)
{
const int itemsCount = Ipc::FewToFewBiQueue::MaxItemsCount(
- ::Config.workers, ::Config.cacheSwap.n_strands, QueueCapacity);
+ ::Config.workers, ::Config.cacheSwap.n_strands, QueueCapacity);
// the maximum number of shared I/O pages is approximately the
// number of queue slots, we add a fudge factor to that to account
// for corner cases where I/O pages are created before queue
if (certificate && chain) {
- if (X509_check_issued(certificate, certificate) == X509_V_OK)
+ if (X509_check_issued(certificate, certificate) == X509_V_OK)
debugs(83, 5, "Certificate is self-signed, will not be chained");
else {
- if(sk_X509_push(chain, certificate))
+ if (sk_X509_push(chain, certificate))
CRYPTO_add(&(certificate->references), 1, CRYPTO_LOCK_X509);
else
debugs(83, DBG_IMPORTANT, "WARNING: unable to add signing certificate to cert chain");
}
}
}
-
+
return certificate;
}