diff options
| author | tb <> | 2024-03-02 11:40:53 +0000 |
|---|---|---|
| committer | tb <> | 2024-03-02 11:40:53 +0000 |
| commit | ea629aae9a31aaf5e0a39626102e231bdca5616e (patch) | |
| tree | 99f724ae0c34ec6dd324fda5fda6bf58d37aceaf /src | |
| parent | c029158ac6ce0cec2bfb5c51d32daa134371f396 (diff) | |
| download | openbsd-ea629aae9a31aaf5e0a39626102e231bdca5616e.tar.gz openbsd-ea629aae9a31aaf5e0a39626102e231bdca5616e.tar.bz2 openbsd-ea629aae9a31aaf5e0a39626102e231bdca5616e.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.h | 4 |
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 { | |||
| 240 | typedef struct bio_st BIO_dummy; | 240 | typedef struct bio_st BIO_dummy; |
| 241 | 241 | ||
| 242 | struct crypto_ex_data_st { | 242 | struct crypto_ex_data_st { |
| 243 | STACK_OF(void) *sk; | 243 | void *sk; |
| 244 | }; | 244 | }; |
| 245 | DECLARE_STACK_OF(void) | 245 | DECLARE_STACK_OF(void) |
| 246 | 246 | ||
