From be722f6a50d730281f3641b42bf3981b945ef0cc Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 2 Mar 2024 11:40:53 +0000 Subject: [PATCH] Change sk in CRYPTO_EX_DATA from STACK_OF(void) * to void * Requested by jsing --- lib/libcrypto/crypto.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libcrypto/crypto.h b/lib/libcrypto/crypto.h index 85c05d76c10..440240baa94 100644 --- a/lib/libcrypto/crypto.h +++ b/lib/libcrypto/crypto.h @@ -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) -- 2.20.1