Skip to content

Commit

Permalink
Match up SYSCTL_INT declarations in style.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoppermann committed Mar 19, 2007
1 parent 693f8d3 commit d5afb20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys/netinet/tcp_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, local_slowstart_flightsize, CTLFLAG_RW,
&ss_fltsz_local, 1, "Slow start flight size for local networks");

int tcp_do_newreno = 1;
SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno, CTLFLAG_RW, &tcp_do_newreno,
0, "Enable NewReno Algorithms");
SYSCTL_INT(_net_inet_tcp, OID_AUTO, newreno, CTLFLAG_RW,
&tcp_do_newreno, 0, "Enable NewReno Algorithms");

int tcp_do_tso = 1;
SYSCTL_INT(_net_inet_tcp, OID_AUTO, tso, CTLFLAG_RW,
Expand Down

0 comments on commit d5afb20

Please sign in to comment.