Skip to content
Snippets Groups Projects
Commit a376cb10 authored by Mark Valence's avatar Mark Valence
Browse files

dup() does not work on WinSock sockets.

parent c62f6d12
Branches
Tags
No related merge requests found
......@@ -58,7 +58,11 @@ int lutil_pair( ber_socket_t sds[2] )
}
sds[0] = sd;
#if !HAVE_WINSOCK
sds[1] = dup( sds[0] );
#else
sds[1] = sds[0];
#endif
return 0;
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment