diff options
author | tb <> | 2025-05-10 06:04:36 +0000 |
---|---|---|
committer | tb <> | 2025-05-10 06:04:36 +0000 |
commit | 79fb8e46e6fa095285356ce7d15c1edf39281576 (patch) | |
tree | e19946a58598e0a4f4e05fb53304abe9d0e3a1c5 /src | |
parent | 7850d7eec52e2bd9dc37280915621143ef1ec39e (diff) | |
download | openbsd-79fb8e46e6fa095285356ce7d15c1edf39281576.tar.gz openbsd-79fb8e46e6fa095285356ce7d15c1edf39281576.tar.bz2 openbsd-79fb8e46e6fa095285356ce7d15c1edf39281576.zip |
ssl_local.h: stop guarding SYSerror() with an #ifdef
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/ssl_local.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_local.h b/src/lib/libssl/ssl_local.h index ad49113260..acb87f8650 100644 --- a/src/lib/libssl/ssl_local.h +++ b/src/lib/libssl/ssl_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_local.h,v 1.32 2025/05/10 05:49:56 tb Exp $ */ | 1 | /* $OpenBSD: ssl_local.h,v 1.33 2025/05/10 06:04:36 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 | * |
@@ -1442,9 +1442,7 @@ int SSL_state_func_code(int _state); | |||
1442 | void SSL_error_internal(const SSL *s, int r, const char *f, int l); | 1442 | void SSL_error_internal(const SSL *s, int r, const char *f, int l); |
1443 | #define SSLerror(s, r) SSL_error_internal(s, r, OPENSSL_FILE, OPENSSL_LINE) | 1443 | #define SSLerror(s, r) SSL_error_internal(s, r, OPENSSL_FILE, OPENSSL_LINE) |
1444 | #define SSLerrorx(r) ERR_PUT_error(ERR_LIB_SSL,(0xfff),(r),OPENSSL_FILE,OPENSSL_LINE) | 1444 | #define SSLerrorx(r) ERR_PUT_error(ERR_LIB_SSL,(0xfff),(r),OPENSSL_FILE,OPENSSL_LINE) |
1445 | #ifndef SYSerror /* XXX - remove #ifdef after error churn */ | ||
1446 | #define SYSerror(r) ERR_PUT_error(ERR_LIB_SYS,(0xfff),(r),OPENSSL_FILE,OPENSSL_LINE) | 1445 | #define SYSerror(r) ERR_PUT_error(ERR_LIB_SYS,(0xfff),(r),OPENSSL_FILE,OPENSSL_LINE) |
1447 | #endif | ||
1448 | 1446 | ||
1449 | #ifndef OPENSSL_NO_SRTP | 1447 | #ifndef OPENSSL_NO_SRTP |
1450 | 1448 | ||