diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-04-25 06:10:16 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-04-25 06:10:16 +0000 |
commit | b67b0a40e936d52c72869b535e5325c06ddea7dd (patch) | |
tree | 259e2418623f789a33c59256c95397122a7c596c | |
parent | 0853d7433ec3b1b6a641ff3c6fc2d73cbe3b3603 (diff) |
From Assar: make adosfs compile, I was supposed
to commit this long ago.
-rw-r--r-- | sys/adosfs/advfsops.c | 6 |
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); } |