Skip to content

Commit bb86730

Browse files
Use uppercase U
1 parent 2c4b6f4 commit bb86730

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ssl_load.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1626,9 +1626,9 @@ static int ProcessBufferCertPublicKey(WOLFSSL_CTX* ctx, WOLFSSL* ssl,
16261626
}
16271627
#ifdef WC_RSA_PSS
16281628
if (ssl)
1629-
ssl->ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1u : 0u;
1629+
ssl->ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1U : 0U;
16301630
else
1631-
ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1u : 0u;
1631+
ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1U : 0U;
16321632
#endif
16331633
break;
16341634
#endif /* !NO_RSA */

0 commit comments

Comments
 (0)