summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>2000-04-25 06:10:15 +0000
committerniklas <niklas@openbsd.org>2000-04-25 06:10:15 +0000
commit0e874e54a10f4f9a27de0a12d0ee115ff1650ccc (patch)
tree96f7b097d4b1c3a478d0b0025e76291b6ed4d4f1
parentif we have to allocate a new mbuf, don't forget to copy the header info from (diff)
downloadwireguard-openbsd-0e874e54a10f4f9a27de0a12d0ee115ff1650ccc.tar.xz
wireguard-openbsd-0e874e54a10f4f9a27de0a12d0ee115ff1650ccc.zip
From Assar: make adosfs compile, I was supposed
to commit this long ago.
-rw-r--r--sys/adosfs/advfsops.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/adosfs/advfsops.c b/sys/adosfs/advfsops.c
index 097a1c1b3df..bfaea0c3837 100644
--- a/sys/adosfs/advfsops.c
+++ b/sys/adosfs/advfsops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: advfsops.c,v 1.16 2000/02/07 04:57:15 assar Exp $ */
+/* $OpenBSD: advfsops.c,v 1.17 2000/04/25 06:10:15 niklas Exp $ */
/* $NetBSD: advfsops.c,v 1.24 1996/12/22 10:10:12 cgd Exp $ */
/*
@@ -665,11 +665,9 @@ adosfs_fhtovp(mp, fhp, vpp)
struct vnode **vpp;
{
struct ifid *ifhp = (struct ifid *)fhp;
- struct adosfsmount *amp = VFSTOADOSFS(mp);
#if 0
struct anode *ap;
#endif
- struct netcred *np;
struct vnode *nvp;
int error;
@@ -690,8 +688,6 @@ adosfs_fhtovp(mp, fhp, vpp)
}
#endif
*vpp = nvp;
- *exflagsp = np->netc_exflags;
- *credanonp = &np->netc_anon;
return(0);
}