diff options
author | tb <> | 2024-03-02 10:32:26 +0000 |
---|---|---|
committer | tb <> | 2024-03-02 10:32:26 +0000 |
commit | 9d772caea5ef17a78884a0e00950b1ea69769acd (patch) | |
tree | 9b2a3bb6ba084b89f9e63181b55047e817ce3c5f /src | |
parent | 695cb1c8837847976b081799d3e5a6efc8a10d82 (diff) | |
download | openbsd-9d772caea5ef17a78884a0e00950b1ea69769acd.tar.gz openbsd-9d772caea5ef17a78884a0e00950b1ea69769acd.tar.bz2 openbsd-9d772caea5ef17a78884a0e00950b1ea69769acd.zip |
Adjust signature of ERR_load_strings()
This aligns the prototypes with OpenSSL 1.1.
ok jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/err/err.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/err/err.h b/src/lib/libcrypto/err/err.h index e0b4354e49..8beab1487e 100644 --- a/src/lib/libcrypto/err/err.h +++ b/src/lib/libcrypto/err/err.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err.h,v 1.32 2024/03/02 10:30:48 tb Exp $ */ | 1 | /* $OpenBSD: err.h,v 1.33 2024/03/02 10:32:26 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -378,8 +378,8 @@ void ERR_asprintf_error_data(char * format, ...); | |||
378 | void ERR_add_error_data(int num, ...); | 378 | void ERR_add_error_data(int num, ...); |
379 | void ERR_add_error_vdata(int num, va_list args); | 379 | void ERR_add_error_vdata(int num, va_list args); |
380 | #endif | 380 | #endif |
381 | void ERR_load_strings(int lib, ERR_STRING_DATA str[]); | 381 | void ERR_load_strings(int lib, ERR_STRING_DATA *str); |
382 | void ERR_unload_strings(int lib, ERR_STRING_DATA str[]); | 382 | void ERR_unload_strings(int lib, ERR_STRING_DATA *str); |
383 | void ERR_load_ERR_strings(void); | 383 | void ERR_load_ERR_strings(void); |
384 | void ERR_load_crypto_strings(void); | 384 | void ERR_load_crypto_strings(void); |
385 | void ERR_free_strings(void); | 385 | void ERR_free_strings(void); |