mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[0.4.7][IP] Silence "TCP operation failed" debug spam. CORE-17369
fix picked from commit 0.4.8-dev-1078-g ad68422a7b
This commit is contained in:
parent
555ef9cdc4
commit
8632b23f79
1 changed files with 3 additions and 3 deletions
|
@ -267,8 +267,8 @@ NTSTATUS TCPTranslateError(const err_t err)
|
||||||
Status = STATUS_UNSUCCESSFUL;
|
Status = STATUS_UNSUCCESSFUL;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
DbgPrint("TCP operation failed: 0x%x (%d)\n", Status, err);
|
TI_DbgPrint(DEBUG_TCP,("TCP operation failed: 0x%x (%d)\n", Status, err));
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
@ -367,7 +367,7 @@ NTSTATUS TCPConnect
|
||||||
|
|
||||||
Bucket->Request.RequestNotifyObject = (PVOID)Complete;
|
Bucket->Request.RequestNotifyObject = (PVOID)Complete;
|
||||||
Bucket->Request.RequestContext = Context;
|
Bucket->Request.RequestContext = Context;
|
||||||
|
|
||||||
InsertTailList( &Connection->ConnectRequest, &Bucket->Entry );
|
InsertTailList( &Connection->ConnectRequest, &Bucket->Entry );
|
||||||
|
|
||||||
Status = TCPTranslateError(LibTCPConnect(Connection,
|
Status = TCPTranslateError(LibTCPConnect(Connection,
|
||||||
|
|
Loading…
Reference in a new issue