summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/tlslegacy
diff options
context:
space:
mode:
authortb <>2022-06-10 22:00:15 +0000
committertb <>2022-06-10 22:00:15 +0000
commitee4a41a6ea3f5b281b0e7cbd0c5cb4d945fc6026 (patch)
tree7a944539218f0b64a71eb5ad4086e87c03970745 /src/regress/lib/libssl/tlslegacy
parentd65646bbcacf3f7648d032597bbf00f0ef8cf1c3 (diff)
downloadopenbsd-ee4a41a6ea3f5b281b0e7cbd0c5cb4d945fc6026.tar.gz
openbsd-ee4a41a6ea3f5b281b0e7cbd0c5cb4d945fc6026.tar.bz2
openbsd-ee4a41a6ea3f5b281b0e7cbd0c5cb4d945fc6026.zip
More %i vs %d cleanup
Diffstat (limited to 'src/regress/lib/libssl/tlslegacy')
-rw-r--r--src/regress/lib/libssl/tlslegacy/tlslegacytest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regress/lib/libssl/tlslegacy/tlslegacytest.c b/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
index 17e19448d8..f18b0eeac3 100644
--- a/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
+++ b/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tlslegacytest.c,v 1.5 2021/11/20 16:36:55 tb Exp $ */ 1/* $OpenBSD: tlslegacytest.c,v 1.6 2022/06/10 22:00:15 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015, 2016, 2017, 2020 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2015, 2016, 2017, 2020 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -567,7 +567,7 @@ tlslegacy_client_test(int testno, struct tlslegacy_client_test *tct)
567 SSL *ssl = NULL; 567 SSL *ssl = NULL;
568 int ret = 1; 568 int ret = 1;
569 569
570 fprintf(stderr, "Test %i - %s\n", testno, tct->desc); 570 fprintf(stderr, "Test %d - %s\n", testno, tct->desc);
571 571
572 if ((rbio = BIO_new_mem_buf(tct->server_response, 572 if ((rbio = BIO_new_mem_buf(tct->server_response,
573 tct->server_response_len)) == NULL) { 573 tct->server_response_len)) == NULL) {