summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRandall S. Becker <randall.becker@nexbridge.ca>2023-11-22 20:45:24 +0000
committerNeil Horman <nhorman@openssl.org>2023-12-12 10:39:54 -0500
commit5cd17920167a8b4f7a81722a1ed3b514115702de (patch)
treedcbc06b2038ec5b3bd22a3a2681d13d7c9aec222 /crypto/bio
parent1c078212f1548d7f647a1f0f12ed6df257c85cc3 (diff)
Deprecate SPT threading support on NonStop.
This fix removes explicit support for the SPT threading model in configurations. This also reverts commit f63e1b48ac893dd6110452e70ed08f191547cd89 that were required for SPT but broke other models. Fixes: #22798 Signed-off-by: Randall S. Becker <randall.becker@nexbridge.ca> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22807)
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bio_sock.c b/crypto/bio/bio_sock.c
index 9f2ae73063..7aa7bdc65e 100644
--- a/crypto/bio/bio_sock.c
+++ b/crypto/bio/bio_sock.c
@@ -354,7 +354,7 @@ int BIO_socket_nbio(int s, int mode)
int l;
l = mode;
-# if defined(FIONBIO) && !defined(OPENSSL_SYS_TANDEM)
+# ifdef FIONBIO
l = mode;
ret = BIO_socket_ioctl(s, FIONBIO, &l);