mirror of
https://github.com/openssl/openssl.git
synced 2024-12-09 05:51:54 +08:00
Fix signed/unsigned comparison warnings in sslapitest
Fixes build failures if using enable-ktls in conjunction with --strict-warnings Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/16090)
This commit is contained in:
parent
c3c00c7acd
commit
2cff17fdb8
@ -1436,7 +1436,7 @@ static int test_ktls(int test)
|
||||
struct ktls_test_cipher *cipher;
|
||||
int cis_ktls, sis_ktls;
|
||||
|
||||
OPENSSL_assert(test / 4 < NUM_KTLS_TEST_CIPHERS);
|
||||
OPENSSL_assert(test / 4 < (int)NUM_KTLS_TEST_CIPHERS);
|
||||
cipher = &ktls_test_ciphers[test / 4];
|
||||
|
||||
cis_ktls = (test & 1) != 0;
|
||||
@ -1450,7 +1450,7 @@ static int test_ktls_sendfile(int tst)
|
||||
{
|
||||
struct ktls_test_cipher *cipher;
|
||||
|
||||
OPENSSL_assert(tst < NUM_KTLS_TEST_CIPHERS);
|
||||
OPENSSL_assert(tst < (int)NUM_KTLS_TEST_CIPHERS);
|
||||
cipher = &ktls_test_ciphers[tst];
|
||||
|
||||
return execute_test_ktls_sendfile(cipher->tls_version, cipher->cipher);
|
||||
|
Loading…
Reference in New Issue
Block a user