Use uppercase U

This commit is contained in:
Josh Holtrop
2025-11-19 23:52:21 -05:00
parent 2c4b6f46b7
commit bb8673070a

View File

@@ -1626,9 +1626,9 @@ static int ProcessBufferCertPublicKey(WOLFSSL_CTX* ctx, WOLFSSL* ssl,
}
#ifdef WC_RSA_PSS
if (ssl)
ssl->ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1u : 0u;
ssl->ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1U : 0U;
else
ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1u : 0u;
ctx->useRsaPss = (cert->keyOID == RSAPSSk) ? 1U : 0U;
#endif
break;
#endif /* !NO_RSA */