From 89cef8992e6abda8c86301825f0be6a0d9bde615 Mon Sep 17 00:00:00 2001 From: fvdl Date: Sun, 10 Dec 2000 23:13:42 +0000 Subject: [PATCH] Update prototype for sobind() to include a struct proc *. --- sys/sys/socketvar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/socketvar.h b/sys/sys/socketvar.h index fdd9ffa02c8d..1f5b46d5c2c9 100644 --- a/sys/sys/socketvar.h +++ b/sys/sys/socketvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: socketvar.h,v 1.40 2000/03/28 05:06:20 simonb Exp $ */ +/* $NetBSD: socketvar.h,v 1.41 2000/12/10 23:13:42 fvdl Exp $ */ /*- * Copyright (c) 1982, 1986, 1990, 1993 @@ -276,7 +276,7 @@ int sb_lock __P((struct sockbuf *sb)); void soinit __P((void)); int soabort __P((struct socket *so)); int soaccept __P((struct socket *so, struct mbuf *nam)); -int sobind __P((struct socket *so, struct mbuf *nam)); +int sobind __P((struct socket *so, struct mbuf *nam, struct proc *)); void socantrcvmore __P((struct socket *so)); void socantsendmore __P((struct socket *so)); int soclose __P((struct socket *so));