diff options
author | Anton Lindqvist <anton@cvs.openbsd.org> | 2023-02-02 12:37:15 +0000 |
---|---|---|
committer | Anton Lindqvist <anton@cvs.openbsd.org> | 2023-02-02 12:37:15 +0000 |
commit | 056aa319b5b57974ad14ca958d5d2340f6161120 (patch) | |
tree | 7d1ba482b954250264d5bf1879b1c6313354c803 /regress/lib/libssl/ssl | |
parent | d1f1a93d895d5495ea1082c5b9cc50617acb8a3b (diff) |
Sync function prototypes and declarations to satisfy clang 15.
ok jsing@
Diffstat (limited to 'regress/lib/libssl/ssl')
-rw-r--r-- | regress/lib/libssl/ssl/ssltest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/regress/lib/libssl/ssl/ssltest.c b/regress/lib/libssl/ssl/ssltest.c index c72551cf520..8aae99018c1 100644 --- a/regress/lib/libssl/ssl/ssltest.c +++ b/regress/lib/libssl/ssl/ssltest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssltest.c,v 1.36 2022/11/26 16:08:57 tb Exp $ */ +/* $OpenBSD: ssltest.c,v 1.37 2023/02/02 12:37:14 anton Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1855,7 +1855,7 @@ app_verify_callback(X509_STORE_CTX *ctx, void *arg) * (The second function has been renamed to avoid name conflicts.) */ static DH * -get_dh1024() +get_dh1024(void) { static unsigned char dh1024_p[] = { 0xF8, 0x81, 0x89, 0x7D, 0x14, 0x24, 0xC5, 0xD1, 0xE6, 0xF7, 0xBF, 0x3A, @@ -1897,7 +1897,7 @@ get_dh1024() } static DH * -get_dh1024dsa() +get_dh1024dsa(void) { static unsigned char dh1024_p[] = { 0xC8, 0x00, 0xF7, 0x08, 0x07, 0x89, 0x4D, 0x90, 0x53, 0xF3, 0xD5, 0x00, |