aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-03-16 19:16:32 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-03-16 19:16:32 +0300
commit9a4fa88b2022a37c2abe42603049e49e0e83735d (patch)
tree25d03a2c73bee8033c6de28f74c51744cf3efd52 /contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c
parent8f60d032b1180f55355c5f2b694e47dab3653056 (diff)
downloadydb-9a4fa88b2022a37c2abe42603049e49e0e83735d.tar.gz
Update contrib/restricted/aws/s2n to 1.3.38
Diffstat (limited to 'contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c')
-rw-r--r--contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c b/contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c
index 6453862e5a..4dfaf37cd7 100644
--- a/contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c
+++ b/contrib/restricted/aws/s2n/tls/s2n_signature_algorithms.c
@@ -294,7 +294,7 @@ int s2n_recv_supported_sig_scheme_list(struct s2n_stuffer *in, struct s2n_sig_sc
sig_hash_algs->len = 0;
- for (size_t i = 0; i < pairs_available; i++) {
+ for (size_t i = 0; i < (size_t) pairs_available; i++) {
uint16_t sig_scheme = 0;
POSIX_GUARD(s2n_stuffer_read_uint16(in, &sig_scheme));