summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-03-02 11:40:53 +0000
committertb <>2024-03-02 11:40:53 +0000
commita83b4bd39ca0e2a42e120c9b9acc944a512d0449 (patch)
tree99f724ae0c34ec6dd324fda5fda6bf58d37aceaf /src
parentd038c69f8bd7ef56048a1b4a09547a8ba2e1cfd0 (diff)
downloadopenbsd-a83b4bd39ca0e2a42e120c9b9acc944a512d0449.tar.gz
openbsd-a83b4bd39ca0e2a42e120c9b9acc944a512d0449.tar.bz2
openbsd-a83b4bd39ca0e2a42e120c9b9acc944a512d0449.zip
Change sk in CRYPTO_EX_DATA from STACK_OF(void) * to void *
Requested by jsing
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto.h b/src/lib/libcrypto/crypto.h
index 85c05d76c1..440240baa9 100644
--- a/src/lib/libcrypto/crypto.h
+++ b/src/lib/libcrypto/crypto.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: crypto.h,v 1.70 2024/03/02 11:39:11 tb Exp $ */ 1/* $OpenBSD: crypto.h,v 1.71 2024/03/02 11:40:53 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -240,7 +240,7 @@ typedef struct {
240typedef struct bio_st BIO_dummy; 240typedef struct bio_st BIO_dummy;
241 241
242struct crypto_ex_data_st { 242struct crypto_ex_data_st {
243 STACK_OF(void) *sk; 243 void *sk;
244}; 244};
245DECLARE_STACK_OF(void) 245DECLARE_STACK_OF(void)
246 246