mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
dup() does not work on WinSock sockets.
This commit is contained in:
parent
c62f6d124c
commit
a376cb1002
@ -58,7 +58,11 @@ int lutil_pair( ber_socket_t sds[2] )
|
|||||||
}
|
}
|
||||||
|
|
||||||
sds[0] = sd;
|
sds[0] = sd;
|
||||||
|
#if !HAVE_WINSOCK
|
||||||
sds[1] = dup( sds[0] );
|
sds[1] = dup( sds[0] );
|
||||||
|
#else
|
||||||
|
sds[1] = sds[0];
|
||||||
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user