diff options
-rw-r--r-- | src/lib/libcrypto/Symbols.list | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/crypto.h | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/lib/libcrypto/Symbols.list b/src/lib/libcrypto/Symbols.list index e21e4d5a9b..a801880ecc 100644 --- a/src/lib/libcrypto/Symbols.list +++ b/src/lib/libcrypto/Symbols.list | |||
@@ -1875,12 +1875,16 @@ OPENSSL_cleanup | |||
1875 | OPENSSL_config | 1875 | OPENSSL_config |
1876 | OPENSSL_cpu_caps | 1876 | OPENSSL_cpu_caps |
1877 | OPENSSL_cpuid_setup | 1877 | OPENSSL_cpuid_setup |
1878 | OPENSSL_gmtime | ||
1878 | OPENSSL_init | 1879 | OPENSSL_init |
1879 | OPENSSL_init_crypto | 1880 | OPENSSL_init_crypto |
1880 | OPENSSL_load_builtin_modules | 1881 | OPENSSL_load_builtin_modules |
1881 | OPENSSL_no_config | 1882 | OPENSSL_no_config |
1883 | OPENSSL_posix_to_tm | ||
1882 | OPENSSL_strcasecmp | 1884 | OPENSSL_strcasecmp |
1883 | OPENSSL_strncasecmp | 1885 | OPENSSL_strncasecmp |
1886 | OPENSSL_timegm | ||
1887 | OPENSSL_tm_to_posix | ||
1884 | OPENSSL_uni2asc | 1888 | OPENSSL_uni2asc |
1885 | OTHERNAME_cmp | 1889 | OTHERNAME_cmp |
1886 | OTHERNAME_free | 1890 | OTHERNAME_free |
diff --git a/src/lib/libcrypto/crypto.h b/src/lib/libcrypto/crypto.h index 47e7eff37c..f37ec3106d 100644 --- a/src/lib/libcrypto/crypto.h +++ b/src/lib/libcrypto/crypto.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto.h,v 1.64 2024/02/18 16:28:37 tb Exp $ */ | 1 | /* $OpenBSD: crypto.h,v 1.65 2024/03/02 09:15:03 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 | * |
@@ -526,9 +526,7 @@ void OPENSSL_cleanup(void); | |||
526 | * OpenSSL helpfully put OPENSSL_gmtime() here because all other time related | 526 | * OpenSSL helpfully put OPENSSL_gmtime() here because all other time related |
527 | * functions are in asn1.h. | 527 | * functions are in asn1.h. |
528 | */ | 528 | */ |
529 | #if defined(LIBRESSL_INTERNAL) || defined(LIBRESSL_NEXT_API) | ||
530 | struct tm *OPENSSL_gmtime(const time_t *time, struct tm *out_tm); | 529 | struct tm *OPENSSL_gmtime(const time_t *time, struct tm *out_tm); |
531 | #endif | ||
532 | 530 | ||
533 | void ERR_load_CRYPTO_strings(void); | 531 | void ERR_load_CRYPTO_strings(void); |
534 | 532 | ||