Change sk in CRYPTO_EX_DATA from STACK_OF(void) * to void *
authortb <tb@openbsd.org>
Sat, 2 Mar 2024 11:40:53 +0000 (11:40 +0000)
committertb <tb@openbsd.org>
Sat, 2 Mar 2024 11:40:53 +0000 (11:40 +0000)
Requested by jsing

lib/libcrypto/crypto.h

index 85c05d7..440240b 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: crypto.h,v 1.70 2024/03/02 11:39:11 tb Exp $ */
+/* $OpenBSD: crypto.h,v 1.71 2024/03/02 11:40:53 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
  *
@@ -240,7 +240,7 @@ typedef struct {
 typedef struct bio_st BIO_dummy;
 
 struct crypto_ex_data_st {
-       STACK_OF(void) *sk;
+       void *sk;
 };
 DECLARE_STACK_OF(void)