diff options
author | tb <> | 2023-04-30 17:07:46 +0000 |
---|---|---|
committer | tb <> | 2023-04-30 17:07:46 +0000 |
commit | 89d95c390782343f2d709d913b9315258d8e22d8 (patch) | |
tree | 92792e6a2fde3757a78b16c3142f0478fc9673ab /src/lib/libcrypto/crypto.h | |
parent | f31a437549264c66096a997ee2e4d7b4afecefb1 (diff) | |
download | openbsd-89d95c390782343f2d709d913b9315258d8e22d8.tar.gz openbsd-89d95c390782343f2d709d913b9315258d8e22d8.tar.bz2 openbsd-89d95c390782343f2d709d913b9315258d8e22d8.zip |
Remove __dead again. Apparently this causes issues for some upstreams.
Thanks to orbea for the report
Diffstat (limited to 'src/lib/libcrypto/crypto.h')
-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 5b1618ac9b..0519202037 100644 --- a/src/lib/libcrypto/crypto.h +++ b/src/lib/libcrypto/crypto.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypto.h,v 1.59 2023/04/28 21:40:14 tb Exp $ */ | 1 | /* $OpenBSD: crypto.h,v 1.60 2023/04/30 17:07:46 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 | * |
@@ -488,7 +488,7 @@ typedef int *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *); | |||
488 | int CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb); | 488 | int CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb); |
489 | 489 | ||
490 | /* die if we have to */ | 490 | /* die if we have to */ |
491 | __dead void OpenSSLDie(const char *file, int line, const char *assertion); | 491 | void OpenSSLDie(const char *file, int line, const char *assertion); |
492 | #define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1)) | 492 | #define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1)) |
493 | 493 | ||
494 | uint64_t OPENSSL_cpu_caps(void); | 494 | uint64_t OPENSSL_cpu_caps(void); |