summaryrefslogtreecommitdiff
path: root/include/net/sctp/structs.h
diff options
context:
space:
mode:
authorDaniel Borkmann <dborkman@redhat.com>2013-04-15 03:27:18 +0000
committerDavid S. Miller <davem@davemloft.net>2013-04-15 14:11:37 -0400
commit0022d2dd4d76e0e7d5c241c343a5016fdfa2ad4f (patch)
tree2446c167fb2a7ebf354e3758948d803971d6b4bb /include/net/sctp/structs.h
parentff2266cddd69f5e0c9d5121ed9218d2f694406cc (diff)
net: sctp: minor: make sctp_ep_common's member 'dead' a bool
Since dead only holds two states (0,1), make it a bool instead of a 'char', which is more appropriate for its purpose. Signed-off-by: Daniel Borkmann <dborkman@redhat.com> Acked-by: Vlad Yasevich <vyasevich@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r--include/net/sctp/structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h
index 3e80eedab17d..e12aa77abc59 100644
--- a/include/net/sctp/structs.h
+++ b/include/net/sctp/structs.h
@@ -1176,7 +1176,7 @@ struct sctp_ep_common {
* dead - Do not attempt to use this object.
*/
atomic_t refcnt;
- char dead;
+ bool dead;
/* What socket does this endpoint belong to? */
struct sock *sk;