summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/client
diff options
context:
space:
mode:
authortb <>2021-08-30 17:28:47 +0000
committertb <>2021-08-30 17:28:47 +0000
commitb05142e1ba115406b0f261b5374facddce7e25b8 (patch)
tree0a67be33ef2dcb0c9b88cdeee94e857810e4d545 /src/regress/lib/libssl/client
parentff0ebfdd90c1f0edf8cda1269349b659fd4250c8 (diff)
downloadopenbsd-b05142e1ba115406b0f261b5374facddce7e25b8.tar.gz
openbsd-b05142e1ba115406b0f261b5374facddce7e25b8.tar.bz2
openbsd-b05142e1ba115406b0f261b5374facddce7e25b8.zip
link verify regress tests to build
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 4f99f0e97c..6d2b2a068d 100644
--- a/src/regress/lib/libssl/client/Makefile
+++ b/src/regress/lib/libssl/client/Makefile
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile,v 1.1 2015/09/01 17:02:18 jsing Exp $ 1# $OpenBSD: Makefile,v 1.2 2021/08/30 17:28:46 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+= -DLIBRESSL_INTERNAL -Werror 7CFLAGS+= -g -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 2efe676a9d..5b0aa533bd 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.33 2021/06/27 17:13:23 jsing Exp $ */ 1/* $OpenBSD: clienttest.c,v 1.34 2021/08/30 17:28:46 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}