diff options
author | Brian Haley <brian.haley@hp.com> | 2008-06-14 20:04:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-14 20:04:49 -0400 |
commit | 7d06b2e053d2d536348e3a0f6bb02982a41bea37 (patch) | |
tree | ec6a5c3f448e84cd431a0397b9e2a87ca25aec17 /net/dccp/dccp.h | |
parent | 4ae127d1b6c71f9240dd4245f240e6dd8fc98014 (diff) |
net: change proto destroy method to return void
Change struct proto destroy function pointer to return void. Noticed
by Al Viro.
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/dccp.h')
-rw-r--r-- | net/dccp/dccp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/dccp.h b/net/dccp/dccp.h index f44d492d3b74..1b2cea244e12 100644 --- a/net/dccp/dccp.h +++ b/net/dccp/dccp.h | |||
@@ -262,7 +262,7 @@ extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb, | |||
262 | const struct dccp_hdr *dh, const unsigned len); | 262 | const struct dccp_hdr *dh, const unsigned len); |
263 | 263 | ||
264 | extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized); | 264 | extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized); |
265 | extern int dccp_destroy_sock(struct sock *sk); | 265 | extern void dccp_destroy_sock(struct sock *sk); |
266 | 266 | ||
267 | extern void dccp_close(struct sock *sk, long timeout); | 267 | extern void dccp_close(struct sock *sk, long timeout); |
268 | extern struct sk_buff *dccp_make_response(struct sock *sk, | 268 | extern struct sk_buff *dccp_make_response(struct sock *sk, |