]> git.sur5r.net Git - openldap/commitdiff
Fix HAVE_WINSOCK for winsock32.lib
authorKurt Zeilenga <kurt@openldap.org>
Mon, 1 Mar 1999 21:08:07 +0000 (21:08 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 1 Mar 1999 21:08:07 +0000 (21:08 +0000)
libraries/libldap/open.c

index 5792b92e0a5a6a41efc5308b776ef08e36eaaa26..53fdb9e547bce1235d471baf5104e70812c94ed8 100644 (file)
@@ -132,9 +132,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 ) {