Skip to content

Commit

Permalink
fixup! crypto/{CMS,PKCS7,OCSP,TS,X509}: constify various cert list pa…
Browse files Browse the repository at this point in the history
…rameters
  • Loading branch information
DDvO committed Oct 9, 2023
1 parent d89d44e commit 5fefd03
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crypto/ocsp/ocsp_vfy.c
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,9 @@ int OCSP_request_verify(OCSP_REQUEST *req, const STACK_OF(X509) *certs,
}

static int ocsp_req_find_signer(X509 **psigner, OCSP_REQUEST *req,
const X509_NAME *nm, const
STACK_OF(X509) *certs, unsigned long flags)
const X509_NAME *nm,
const STACK_OF(X509) *certs,
unsigned long flags)
{
X509 *signer;

Expand Down

0 comments on commit 5fefd03

Please sign in to comment.