diff options
Diffstat (limited to 'sys/kern/sys_socket.c')
| -rw-r--r-- | sys/kern/sys_socket.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/sys_socket.c b/sys/kern/sys_socket.c index 6ad438328dc6..aa892e3d49fc 100644 --- a/sys/kern/sys_socket.c +++ b/sys/kern/sys_socket.c @@ -54,10 +54,11 @@ struct fileops socketops = /* ARGSUSED */ int -soo_read(fp, uio, cred, flags) +soo_read(fp, uio, cred, flags, p) struct file *fp; struct uio *uio; struct ucred *cred; + struct proc *p; int flags; { struct socket *so = (struct socket *)fp->f_data; @@ -66,10 +67,11 @@ soo_read(fp, uio, cred, flags) /* ARGSUSED */ int -soo_write(fp, uio, cred, flags) +soo_write(fp, uio, cred, flags, p) struct file *fp; struct uio *uio; struct ucred *cred; + struct proc *p; int flags; { struct socket *so = (struct socket *)fp->f_data; |
