mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix a typo.
X-MFC-with: 229665
This commit is contained in:
parent
9bea89c1b0
commit
4f7fca1ca1
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ tcp_twstart(struct tcpcb *tp)
|
|||
/*
|
||||
* Recover last window size sent.
|
||||
*/
|
||||
if (SEQ_GE(tp->rcv_adv, tp->rcv_nxt))
|
||||
if (SEQ_GEQ(tp->rcv_adv, tp->rcv_nxt))
|
||||
tw->last_win = (tp->rcv_adv - tp->rcv_nxt) >> tp->rcv_scale;
|
||||
else
|
||||
tw->last_win = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue