mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
tcp cc: Remove a stray semicolon
MFC after: 1 week (cherry picked from commit 2f395cfda8b5c1dc267e9cd4d99d7d0862fb4fca)
This commit is contained in:
parent
02e61e1d9e
commit
1821145f28
1 changed files with 1 additions and 1 deletions
|
|
@ -373,7 +373,7 @@ newreno_cong_signal(struct cc_var *ccv, uint32_t type)
|
|||
cwin = CCV(ccv, snd_cwnd);
|
||||
mss = tcp_fixed_maxseg(ccv->ccvc.tcp);
|
||||
nreno = ccv->cc_data;
|
||||
beta = (nreno == NULL) ? V_newreno_beta : nreno->beta;;
|
||||
beta = (nreno == NULL) ? V_newreno_beta : nreno->beta;
|
||||
beta_ecn = (nreno == NULL) ? V_newreno_beta_ecn : nreno->beta_ecn;
|
||||
/*
|
||||
* Note that we only change the backoff for ECN if the
|
||||
|
|
|
|||
Loading…
Reference in a new issue