Skip to content

Commit 80d3037

Browse files
Use more uppercase U's
1 parent bb86730 commit 80d3037

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tls13.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7908,7 +7908,7 @@ static WC_INLINE void EncodeSigAlg(const WOLFSSL * ssl, byte hashAlgo, byte hsTy
79087908
* the rsa_pss_pss_* signature algorithm in use, then report
79097909
* rsa_pss_pss_* rather than rsa_pss_rsae_*. */
79107910
if (ssl->ctx->useRsaPss &&
7911-
((ssl->pssAlgo & (1u << hashAlgo)) != 0u) &&
7911+
((ssl->pssAlgo & (1U << hashAlgo)) != 0U) &&
79127912
(sha256_mac <= hashAlgo) && (hashAlgo <= sha512_mac))
79137913
{
79147914
output[1] = PSS_RSAE_TO_PSS_PSS(hashAlgo);

0 commit comments

Comments
 (0)