summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/server/servertest.c
diff options
context:
space:
mode:
authortb <>2022-06-10 22:00:15 +0000
committertb <>2022-06-10 22:00:15 +0000
commita4e7780cc02bb9478301ba07f24a4d66c9b6beb1 (patch)
tree7a944539218f0b64a71eb5ad4086e87c03970745 /src/regress/lib/libssl/server/servertest.c
parent354ddd0b04f9e20dc68389faaec86b42d24d86a1 (diff)
downloadopenbsd-a4e7780cc02bb9478301ba07f24a4d66c9b6beb1.tar.gz
openbsd-a4e7780cc02bb9478301ba07f24a4d66c9b6beb1.tar.bz2
openbsd-a4e7780cc02bb9478301ba07f24a4d66c9b6beb1.zip
More %i vs %d cleanup
Diffstat (limited to 'src/regress/lib/libssl/server/servertest.c')
-rw-r--r--src/regress/lib/libssl/server/servertest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/server/servertest.c b/src/regress/lib/libssl/server/servertest.c
index bd0adcd005..3367836dbd 100644
--- a/src/regress/lib/libssl/server/servertest.c
+++ b/src/regress/lib/libssl/server/servertest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: servertest.c,v 1.6 2021/11/20 16:36:55 tb Exp $ */ 1/* $OpenBSD: servertest.c,v 1.7 2022/06/10 22:00:15 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015, 2016, 2017 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2015, 2016, 2017 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -116,7 +116,7 @@ server_hello_test(int testno, struct server_hello_test *sht)
116 SSL *ssl = NULL; 116 SSL *ssl = NULL;
117 int ret = 1; 117 int ret = 1;
118 118
119 fprintf(stderr, "Test %i - %s\n", testno, sht->desc); 119 fprintf(stderr, "Test %d - %s\n", testno, sht->desc);
120 120
121 if ((rbio = BIO_new_mem_buf(sht->client_hello, 121 if ((rbio = BIO_new_mem_buf(sht->client_hello,
122 sht->client_hello_len)) == NULL) { 122 sht->client_hello_len)) == NULL) {