Skip to content

Commit

Permalink
Merge pull request F-Stack#18 from liwei/master
Browse files Browse the repository at this point in the history
Fix F-Stack#17: FreeBSD typo
  • Loading branch information
whl739 authored May 25, 2017
2 parents 3377ed7 + 839295c commit 6e6fd87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion freebsd/netinet/cc/cc_cubic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 6e6fd87

Please sign in to comment.