Skip to content

Commit

Permalink
OSSL_CMP_validate_cert_path(): fix type of 'err' variable
Browse files Browse the repository at this point in the history
  • Loading branch information
DDvO committed Feb 12, 2024
1 parent 0cfe9cf commit 73d699f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/cmp/cmp_vfy.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ int OSSL_CMP_validate_cert_path(const OSSL_CMP_CTX *ctx,
{
int valid = 0;
X509_STORE_CTX *csc = NULL;
int err;
unsigned long err;

if (ctx == NULL || cert == NULL) {
ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT);
Expand Down

0 comments on commit 73d699f

Please sign in to comment.