mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 08:46:45 +00:00
Fix typo
This commit is contained in:
parent
223ba8a541
commit
66fea77905
1 changed files with 2 additions and 2 deletions
|
|
@ -573,9 +573,9 @@ static DWORD WINAPI subprocess_thread_func(void *data)
|
|||
/* Read succeeded, but also check for FD_CLOSE error that was
|
||||
* cleared and won't be signaled again */
|
||||
if (triggered.lNetworkEvents & FD_CLOSE) {
|
||||
if (o.debug && triggered.iErrorCodes[FD_CLOSE_BIT]) {
|
||||
if (o.debug && triggered.iErrorCode[FD_CLOSE_BIT]) {
|
||||
logdebug("Connection closed for fd %d: %s.\n", info->fdn.fd,
|
||||
socket_strerror(triggered.iErrorCodes[FD_CLOSE_BIT]));
|
||||
socket_strerror(triggered.iErrorCode[FD_CLOSE_BIT]));
|
||||
}
|
||||
PIPE_CLOSE(PIPE_IN);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue