summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2014-12-22 17:47:28 -0500
committerRich Salz <rsalz@openssl.org>2014-12-22 17:47:28 -0500
commit5ad4fdce41bb1ce7762b70fb50f732f70e3772cf (patch)
tree4f7aabf39c055333e29ce52794f0568d4ccb259b /crypto/bio
parent67472bd82bed9d5e481b0d75926aab93618902be (diff)
RT3548: Remove unsupported platforms.
This commit removes MPE/iX Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bss_conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_conn.c b/crypto/bio/bss_conn.c
index 91e47e92eb..d2c9695b70 100644
--- a/crypto/bio/bss_conn.c
+++ b/crypto/bio/bss_conn.c
@@ -236,7 +236,7 @@ static int conn_state(BIO *b, BIO_CONNECT *c)
}
c->state=BIO_CONN_S_CONNECT;
-#if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
+#if defined(SO_KEEPALIVE)
i=1;
i=setsockopt(b->num,SOL_SOCKET,SO_KEEPALIVE,(char *)&i,sizeof(i));
if (i < 0)