summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-08-20 22:21:00 +0000
committertb <>2023-08-20 22:21:00 +0000
commit0549f86e76a5603b0f8d22e42306b47701d1cfd4 (patch)
tree9f52436dfdccf0b9ef6f1ee9284f7f532d6906cf
parent720c5a593841a16f4700d1d3d03e6221f49cda32 (diff)
downloadopenbsd-0549f86e76a5603b0f8d22e42306b47701d1cfd4.tar.gz
openbsd-0549f86e76a5603b0f8d22e42306b47701d1cfd4.tar.bz2
openbsd-0549f86e76a5603b0f8d22e42306b47701d1cfd4.zip
Drop unnecessary OPENSSL_NO_DEPRECATED dance
-rw-r--r--src/regress/lib/libcrypto/dh/dhtest.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/regress/lib/libcrypto/dh/dhtest.c b/src/regress/lib/libcrypto/dh/dhtest.c
index 41bc0b2e2d..0df54273e1 100644
--- a/src/regress/lib/libcrypto/dh/dhtest.c
+++ b/src/regress/lib/libcrypto/dh/dhtest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dhtest.c,v 1.13 2023/08/20 22:20:12 tb Exp $ */ 1/* $OpenBSD: dhtest.c,v 1.14 2023/08/20 22:21:00 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -56,12 +56,6 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58 58
59/* Until the key-gen callbacks are modified to use newer prototypes, we allow
60 * deprecated functions for openssl-internal code */
61#ifdef OPENSSL_NO_DEPRECATED
62#undef OPENSSL_NO_DEPRECATED
63#endif
64
65#include <err.h> 59#include <err.h>
66#include <stdio.h> 60#include <stdio.h>
67#include <stdlib.h> 61#include <stdlib.h>