artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b027249
)
Change the loop index from an unsigned int to size_t now that all
author
tb
<tb@openbsd.org>
Tue, 7 Jun 2022 17:55:08 +0000
(17:55 +0000)
committer
tb
<tb@openbsd.org>
Tue, 7 Jun 2022 17:55:08 +0000
(17:55 +0000)
upper bounds are known to be size_t.
ok jsing
lib/libssl/ssl_txt.c
patch
|
blob
|
history
diff --git
a/lib/libssl/ssl_txt.c
b/lib/libssl/ssl_txt.c
index
cb14ccc
..
33b067a
100644
(file)
--- a/
lib/libssl/ssl_txt.c
+++ b/
lib/libssl/ssl_txt.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: ssl_txt.c,v 1.3
4 2022/06/07 17:22:22
tb Exp $ */
+/* $OpenBSD: ssl_txt.c,v 1.3
5 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 in
t i;
+
size_
t i;
int ret = 0;
if (x == NULL)