diff options
author | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-12 11:49:30 +0000 |
---|---|---|
committer | Eivind Eklund <eivind@FreeBSD.org> | 1999-01-12 11:49:30 +0000 |
commit | ea2e82771675ed0063169121751717ca0d7ac967 (patch) | |
tree | 1d2044973fbce97a45d3ec8a80e5ed04e61c6302 /sys/miscfs/portal | |
parent | 5b1b6c58596c990f6da8e0385d3990e4baa8e88b (diff) | |
download | src-ea2e82771675ed0063169121751717ca0d7ac967.tar.gz src-ea2e82771675ed0063169121751717ca0d7ac967.zip |
Remove declarations for undefined functions and a couple of unused
enotsupp implementations.
Notes
Notes:
svn path=/head/; revision=42568
Diffstat (limited to 'sys/miscfs/portal')
-rw-r--r-- | sys/miscfs/portal/portal_vnops.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/sys/miscfs/portal/portal_vnops.c b/sys/miscfs/portal/portal_vnops.c index 6ed96c55f049..819d636a20c2 100644 --- a/sys/miscfs/portal/portal_vnops.c +++ b/sys/miscfs/portal/portal_vnops.c @@ -35,7 +35,7 @@ * * @(#)portal_vnops.c 8.14 (Berkeley) 5/21/95 * - * $Id: portal_vnops.c,v 1.33 1998/06/10 21:21:31 dfr Exp $ + * $Id: portal_vnops.c,v 1.34 1998/12/07 21:58:32 archie Exp $ */ /* @@ -68,7 +68,6 @@ static int portal_fileid = PORTAL_ROOTFILEID+1; static int portal_badop __P((void)); static void portal_closefd __P((struct proc *p, int fd)); static int portal_connect __P((struct socket *so, struct socket *so2)); -static int portal_enotsupp __P((void)); static int portal_getattr __P((struct vop_getattr_args *ap)); static int portal_inactive __P((struct vop_inactive_args *ap)); static int portal_lookup __P((struct vop_lookup_args *ap)); @@ -576,16 +575,6 @@ portal_print(ap) /* - * Portal vnode unsupported operation - */ -static int -portal_enotsupp() -{ - - return (EOPNOTSUPP); -} - -/* * Portal "should never get here" operation */ static int |