summaryrefslogtreecommitdiffstats
path: root/apps/s_socket.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2006-05-01 18:49:26 +0000
committerUlf Möller <ulf@openssl.org>2006-05-01 18:49:26 +0000
commit36e77b1059ed7ba6c1852de2b1e63ffc48150d66 (patch)
tree426afa87fcc12d88a34c551ae26d4b95dc0c6bb3 /apps/s_socket.c
parenta9c32ace06f53df167e59d6d3e95e69d063bd608 (diff)
Bug fix.
PR: 1307 Submitted by: Oliver Tappe <zooey@hirschkaefer.de>
Diffstat (limited to 'apps/s_socket.c')
-rw-r--r--apps/s_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/s_socket.c b/apps/s_socket.c
index d9321a0982..37e6cdc555 100644
--- a/apps/s_socket.c
+++ b/apps/s_socket.c
@@ -264,7 +264,7 @@ static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)
if (s == INVALID_SOCKET) { perror("socket"); return(0); }
-#ifndef OPENSSL_SYS_MPE
+#if defined(SO_KEEPALIVE) && !defined(OPENSSL_SYS_MPE)
if (type == SOCK_STREAM)
{
i=0;
@@ -274,7 +274,7 @@ static int init_client_ip(int *sock, unsigned char ip[4], int port, int type)
#endif
if (connect(s,(struct sockaddr *)&them,sizeof(them)) == -1)
- { close(s); perror("connect"); return(0); }
+ { closesocket(s); perror("connect"); return(0); }
*sock=s;
return(1);
}