Merge pull request #18 from liwei/master

Fix #17: FreeBSD typo
dev
logwang 2017-05-25 20:06:14 +08:00 committed by GitHub
commit 6e6fd87cff
1 changed files with 2 additions and 1 deletions

View File

@ -261,9 +261,10 @@ cubic_cong_signal(struct cc_var *ccv, uint32_t type)
* chance the first one is a false alarm and may not indicate
* congestion.
*/
if (CCV(ccv, t_rxtshift) >= 2)
if (CCV(ccv, t_rxtshift) >= 2) {
cubic_data->num_cong_events++;
cubic_data->t_last_cong = ticks;
}
break;
}
}