From cc497fb04a4baf1b45a653dc0db21ba1efb698dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Tue, 14 Mar 2000 16:35:36 +0000 Subject: [PATCH] Avoid a warning. --- apps/s_socket.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/s_socket.c b/apps/s_socket.c index ba10d76b28..081b1a57d1 100644 --- a/apps/s_socket.c +++ b/apps/s_socket.c @@ -80,7 +80,9 @@ typedef unsigned int u_int; #include static struct hostent *GetHostByName(char *name); +#ifdef WINDOWS static void sock_cleanup(void); +#endif static int sock_init(void); static int init_client_ip(int *sock,unsigned char ip[4], int port); static int init_server(int *sock, int port); @@ -130,17 +132,17 @@ static BOOL CALLBACK enumproc(HWND hwnd,LPARAM lParam) #endif /* WIN32 */ #endif /* WINDOWS */ +#ifdef WINDOWS static void sock_cleanup(void) { -#ifdef WINDOWS if (wsa_init_done) { wsa_init_done=0; WSACancelBlockingCall(); WSACleanup(); } -#endif } +#endif static int sock_init(void) { -- GitLab