summaryrefslogtreecommitdiffstats
path: root/apps/s_socket.c
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 /apps/s_socket.c
parent67472bd82bed9d5e481b0d75926aab93618902be (diff)
RT3548: Remove unsupported platforms.
This commit removes MPE/iX Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'apps/s_socket.c')
-rw-r--r--apps/s_socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_socket.c b/apps/s_socket.c
index e83baf4e70..7edef15c40 100644
--- a/apps/s_socket.c
+++ b/apps/s_socket.c
@@ -269,7 +269,7 @@ static int init_client_ip(int *sock, const unsigned char ip[4], int port,
if (s == INVALID_SOCKET) { perror("socket"); return(0); }
-#if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
+#if defined(SO_KEEPALIVE)
if (type == SOCK_STREAM)
{
i=0;