summaryrefslogtreecommitdiffstats
path: root/sys/sys/protosw.h
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2006-03-15 19:02:43 +0000
committerrwatson <rwatson@FreeBSD.org>2006-03-15 19:02:43 +0000
commitbd6bdecfd4708ce7d5a0e17b281315f931e3ed47 (patch)
tree9abdd67b5112cd47d8962e87246a3ecb85e4ffd9 /sys/sys/protosw.h
parent26d969a37629604be8a3a3a4234127440945277a (diff)
downloadFreeBSD-src-bd6bdecfd4708ce7d5a0e17b281315f931e3ed47.zip
FreeBSD-src-bd6bdecfd4708ce7d5a0e17b281315f931e3ed47.tar.gz
Correct spelling of 0x4000 in previous commit. This one line change from
a 42k patch seemed easier to retype than apply, but apparently not. :-) Submitted by: pjd
Diffstat (limited to 'sys/sys/protosw.h')
-rw-r--r--sys/sys/protosw.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/protosw.h b/sys/sys/protosw.h
index bcf263f..5f39c69 100644
--- a/sys/sys/protosw.h
+++ b/sys/sys/protosw.h
@@ -196,7 +196,7 @@ struct uio;
*/
struct pr_usrreqs {
double __Break_the_struct_layout_for_now;
- int (*pru_abort)(struct socket *so);
+ void (*pru_abort)(struct socket *so);
int (*pru_accept)(struct socket *so, struct sockaddr **nam);
int (*pru_attach)(struct socket *so, int proto, struct thread *td);
int (*pru_bind)(struct socket *so, struct sockaddr *nam,
@@ -246,7 +246,7 @@ struct pr_usrreqs {
* All nonvoid pru_*() functions below return EOPNOTSUPP.
*/
-int pru_abort_notsupp(struct socket *so);
+void pru_abort_notsupp(struct socket *so);
int pru_accept_notsupp(struct socket *so, struct sockaddr **nam);
int pru_attach_notsupp(struct socket *so, int proto, struct thread *td);
int pru_bind_notsupp(struct socket *so, struct sockaddr *nam,
OpenPOWER on IntegriCloud