diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2011-12-19 13:56:45 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-12-19 22:27:29 -0500 | 
| commit | 3db1cd5c05f35fb43eb134df6f321de4e63141f2 (patch) | |
| tree | 960039f3f4f0a524b37e94434624da154859bc64 /net/ipv4/tcp_timer.c | |
| parent | a8e510f682fe6d7671c11887e07c55f86caaf3c1 (diff) | |
| download | olio-linux-3.10-3db1cd5c05f35fb43eb134df6f321de4e63141f2.tar.xz olio-linux-3.10-3db1cd5c05f35fb43eb134df6f321de4e63141f2.zip  | |
net: fix assignment of 0/1 to bool variables.
DaveM said:
   Please, this kind of stuff rots forever and not using bool properly
   drives me crazy.
Joe Perches <joe@perches.com> gave me the spatch script:
	@@
	bool b;
	@@
	-b = 0
	+b = false
	@@
	bool b;
	@@
	-b = 1
	+b = true
I merely installed coccinelle, read the documentation and took credit.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
| -rw-r--r-- | net/ipv4/tcp_timer.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index 40a41f07798..a516d1e399d 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -171,13 +171,13 @@ static int tcp_write_timeout(struct sock *sk)  {  	struct inet_connection_sock *icsk = inet_csk(sk);  	int retry_until; -	bool do_reset, syn_set = 0; +	bool do_reset, syn_set = false;  	if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {  		if (icsk->icsk_retransmits)  			dst_negative_advice(sk);  		retry_until = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries; -		syn_set = 1; +		syn_set = true;  	} else {  		if (retransmits_timed_out(sk, sysctl_tcp_retries1, 0, 0)) {  			/* Black hole detection */  |