summaryrefslogtreecommitdiffstats
path: root/net/ipv4/af_inet.c
diff options
context:
space:
mode:
authorPaul Moore2007-01-09 23:37:06 +0100
committerDavid S. Miller2007-01-09 23:37:06 +0100
commit469de9b90f739f130ab3d483e819888e977596b8 (patch)
treefbec61bd030314045e8c0d1763acd64fbcba0cf9 /net/ipv4/af_inet.c
parent[SCTP]: Fix err_hdr assignment in sctp_init_cause. (diff)
downloadkernel-qcow2-linux-469de9b90f739f130ab3d483e819888e977596b8.tar.gz
kernel-qcow2-linux-469de9b90f739f130ab3d483e819888e977596b8.tar.xz
kernel-qcow2-linux-469de9b90f739f130ab3d483e819888e977596b8.zip
[INET]: style updates for the inet_sock->is_icsk assignment fix
A quick patch to change the inet_sock->is_icsk assignment to better fit with existing kernel coding style. Signed-off-by: Paul Moore <paul.moore@hp.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/af_inet.c')
-rw-r--r--net/ipv4/af_inet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index d60fd7321e63..864009643675 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -305,7 +305,7 @@ lookup_protocol:
sk->sk_reuse = 1;
inet = inet_sk(sk);
- inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) == INET_PROTOSW_ICSK;
+ inet->is_icsk = (INET_PROTOSW_ICSK & answer_flags) != 0;
if (SOCK_RAW == sock->type) {
inet->num = protocol;