Import minor WINSOCK dll fix.

This commit is contained in:
Kurt Zeilenga 1999-03-26 19:25:35 +00:00
parent ff251bcd04
commit 8900d9d351

View File

@ -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 ) {