summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress/lib/libssl/client')
-rw-r--r--src/regress/lib/libssl/client/Makefile4
-rw-r--r--src/regress/lib/libssl/client/clienttest.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/client/Makefile b/src/regress/lib/libssl/client/Makefile
index 6d2b2a068d..5a54f80914 100644
--- a/src/regress/lib/libssl/client/Makefile
+++ b/src/regress/lib/libssl/client/Makefile
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile,v 1.2 2021/08/30 17:28:46 tb Exp $ 1# $OpenBSD: Makefile,v 1.3 2021/08/30 17:34:01 tb Exp $
2 2
3PROG= clienttest 3PROG= clienttest
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
5DPADD= ${LIBSSL} ${LIBCRYPTO} 5DPADD= ${LIBSSL} ${LIBCRYPTO}
6WARNINGS= Yes 6WARNINGS= Yes
7CFLAGS+= -g -DLIBRESSL_INTERNAL -Werror 7CFLAGS+= -DLIBRESSL_INTERNAL -Werror
8 8
9.include <bsd.regress.mk> 9.include <bsd.regress.mk>
diff --git a/src/regress/lib/libssl/client/clienttest.c b/src/regress/lib/libssl/client/clienttest.c
index 5b0aa533bd..22654e7ed1 100644
--- a/src/regress/lib/libssl/client/clienttest.c
+++ b/src/regress/lib/libssl/client/clienttest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: clienttest.c,v 1.34 2021/08/30 17:28:46 tb Exp $ */ 1/* $OpenBSD: clienttest.c,v 1.35 2021/08/30 17:34:01 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2015 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -720,7 +720,7 @@ client_hello_test(int testno, const struct client_hello_test *cht)
720 BIO_free(rbio); 720 BIO_free(rbio);
721 BIO_free(wbio); 721 BIO_free(wbio);
722 722
723 // free(client_hello); 723 free(client_hello);
724 724
725 return (ret); 725 return (ret);
726} 726}