mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-22 09:20:51 -05:00
double ))
This commit is contained in:
parent
c3f9bda20f
commit
bece90bfd7
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: socket.c,v 1.26 2004/01/08 05:35:53 marka Exp $ */
|
||||
/* $Id: socket.c,v 1.27 2004/01/08 08:23:11 marka Exp $ */
|
||||
|
||||
/* This code has been rewritten to take advantage of Windows Sockets
|
||||
* I/O Completion Ports and Events. I/O Completion Ports is ONLY
|
||||
|
|
@ -2167,7 +2167,7 @@ internal_accept(isc_socket_t *sock, int accept_errno) {
|
|||
if (fd != INVALID_SOCKET) {
|
||||
isc_result_t tresult;
|
||||
tresult = make_nonblock(fd);
|
||||
if (tresult != ISC_R_SUCCESS)) {
|
||||
if (tresult != ISC_R_SUCCESS) {
|
||||
closesocket(fd);
|
||||
fd = INVALID_SOCKET;
|
||||
result = tresult;
|
||||
|
|
|
|||
Loading…
Reference in a new issue