From 7e1746154ae50bcf7e2c98c4b699b86182a2ef40 Mon Sep 17 00:00:00 2001 From: tb Date: Tue, 7 Jun 2022 17:55:08 +0000 Subject: [PATCH] Change the loop index from an unsigned int to size_t now that all upper bounds are known to be size_t. ok jsing --- lib/libssl/ssl_txt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libssl/ssl_txt.c b/lib/libssl/ssl_txt.c index cb14ccc855a..33b067a73b2 100644 --- a/lib/libssl/ssl_txt.c +++ b/lib/libssl/ssl_txt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_txt.c,v 1.34 2022/06/07 17:22:22 tb Exp $ */ +/* $OpenBSD: ssl_txt.c,v 1.35 2022/06/07 17:55:08 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -107,7 +107,7 @@ SSL_SESSION_print_fp(FILE *fp, const SSL_SESSION *x) int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) { - unsigned int i; + size_t i; int ret = 0; if (x == NULL) -- 2.20.1