Skip to content

Commit

Permalink
tests: Fix wrong comparison while detecting fips mode
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Jelen <[email protected]>
  • Loading branch information
Jakuje authored and simo5 committed Jan 20, 2025
1 parent 9a2d76a commit ca72b5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tlsctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ int main(int argc, char *argv[])
SSL_CTX_free(ctx);

env = getenv("SUPPORT_RSA_PKCS1_ENCRYPTION");
if (env && env[0] == "1") {
if (env && env[0] == '1') {
test_pkcs1_with_tls_padding();
}

Expand Down

0 comments on commit ca72b5e

Please sign in to comment.