From 8900d9d3518e71d127274083424c41e50d66b6d4 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 26 Mar 1999 19:25:35 +0000 Subject: [PATCH] Import minor WINSOCK dll fix. --- libraries/libldap/open.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/libldap/open.c b/libraries/libldap/open.c index 7146c9b67f..190d4028b9 100644 --- a/libraries/libldap/open.c +++ b/libraries/libldap/open.c @@ -137,9 +137,11 @@ ldap_init( char *defhost, int defport ) } /* The WinSock DLL is acceptable. Proceed. */ #elif HAVE_WINSOCK - if ( WSAStartup( 0x0101, &wsadata ) != 0 ) { +{ WSADATA wsaData + if ( WSAStartup( 0x0101, &wsaData ) != 0 ) { return( NULL ); } +} #endif if ( (ld = (LDAP *) calloc( 1, sizeof(LDAP) )) == NULL ) {