mirror of https://github.com/acidanthera/audk.git
Fixing coding style issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7945 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
5fe2f07f0f
commit
52b2a30825
|
@ -496,7 +496,7 @@ TcpDeliverData (
|
|||
TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
|
||||
}
|
||||
|
||||
if (Nbuf->TotalSize) {
|
||||
if (Nbuf->TotalSize != 0) {
|
||||
Urgent = 0;
|
||||
|
||||
if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_URG) &&
|
||||
|
@ -1353,7 +1353,7 @@ StepSix:
|
|||
|
||||
if ((Tcb->State != TCP_CLOSED) &&
|
||||
(TcpToSendData (Tcb, 0) == 0) &&
|
||||
(TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW) || Nbuf->TotalSize)) {
|
||||
(TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW) || (Nbuf->TotalSize != 0))) {
|
||||
|
||||
TcpToSendAck (Tcb);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue