diff options
Diffstat (limited to 'net/sctp/endpointola.c')
-rw-r--r-- | net/sctp/endpointola.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c index 46bbfc266efc..5fbd7bc6bb11 100644 --- a/net/sctp/endpointola.c +++ b/net/sctp/endpointola.c | |||
@@ -121,7 +121,7 @@ static struct sctp_endpoint *sctp_endpoint_init(struct sctp_endpoint *ep, | |||
121 | 121 | ||
122 | /* Initialize the basic object fields. */ | 122 | /* Initialize the basic object fields. */ |
123 | atomic_set(&ep->base.refcnt, 1); | 123 | atomic_set(&ep->base.refcnt, 1); |
124 | ep->base.dead = 0; | 124 | ep->base.dead = false; |
125 | 125 | ||
126 | /* Create an input queue. */ | 126 | /* Create an input queue. */ |
127 | sctp_inq_init(&ep->base.inqueue); | 127 | sctp_inq_init(&ep->base.inqueue); |
@@ -233,7 +233,7 @@ void sctp_endpoint_add_asoc(struct sctp_endpoint *ep, | |||
233 | */ | 233 | */ |
234 | void sctp_endpoint_free(struct sctp_endpoint *ep) | 234 | void sctp_endpoint_free(struct sctp_endpoint *ep) |
235 | { | 235 | { |
236 | ep->base.dead = 1; | 236 | ep->base.dead = true; |
237 | 237 | ||
238 | ep->base.sk->sk_state = SCTP_SS_CLOSED; | 238 | ep->base.sk->sk_state = SCTP_SS_CLOSED; |
239 | 239 | ||