diff options
author | Brian Haley <brian.haley@hp.com> | 2008-06-14 17:04:49 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-14 17:04:49 -0700 |
commit | 7d06b2e053d2d536348e3a0f6bb02982a41bea37 (patch) | |
tree | ec6a5c3f448e84cd431a0397b9e2a87ca25aec17 /net/dccp/dccp.h | |
parent | 4ae127d1b6c71f9240dd4245f240e6dd8fc98014 (diff) | |
download | kernel_samsung_crespo-7d06b2e053d2d536348e3a0f6bb02982a41bea37.zip kernel_samsung_crespo-7d06b2e053d2d536348e3a0f6bb02982a41bea37.tar.gz kernel_samsung_crespo-7d06b2e053d2d536348e3a0f6bb02982a41bea37.tar.bz2 |
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 f44d492..1b2cea2 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, const struct dccp_hdr *dh, const unsigned len); extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized); -extern int dccp_destroy_sock(struct sock *sk); +extern void dccp_destroy_sock(struct sock *sk); extern void dccp_close(struct sock *sk, long timeout); extern struct sk_buff *dccp_make_response(struct sock *sk, |