diff options
author | peter <peter@FreeBSD.org> | 1999-04-05 06:39:10 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-04-05 06:39:10 +0000 |
commit | af77d6f1911755f8346497eef1878e20b8c4949c (patch) | |
tree | fece2319b7a48c717ba1a364e926278582bbfb5e | |
parent | a87f5a3076eb3e2f803f65909ed55c5188c56eb4 (diff) | |
download | FreeBSD-src-af77d6f1911755f8346497eef1878e20b8c4949c.zip FreeBSD-src-af77d6f1911755f8346497eef1878e20b8c4949c.tar.gz |
There's not much point in the EXPORTMFS #ifdef. I've had this sitting
in my tree for 12+ months, and I just noticed that NetBSD have (I think,
I've just seen the commit, not the change) just zapped it there.
It wasn't in the options files or LINT either.
-rw-r--r-- | sys/ufs/mfs/mfs_vfsops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/ufs/mfs/mfs_vfsops.c b/sys/ufs/mfs/mfs_vfsops.c index 9e470f0..9e19444 100644 --- a/sys/ufs/mfs/mfs_vfsops.c +++ b/sys/ufs/mfs/mfs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)mfs_vfsops.c 8.11 (Berkeley) 6/19/95 - * $Id: mfs_vfsops.c,v 1.56 1999/01/28 00:57:54 dillon Exp $ + * $Id: mfs_vfsops.c,v 1.57 1999/03/12 00:44:03 julian Exp $ */ @@ -285,7 +285,6 @@ mfs_mount(mp, path, data, ndp, p) } if (fs->fs_ronly && (mp->mnt_kern_flag & MNTK_WANTRDWR)) fs->fs_ronly = 0; -#ifdef EXPORTMFS /* if not updating name...*/ if (args.fspec == 0) { /* @@ -295,7 +294,6 @@ mfs_mount(mp, path, data, ndp, p) err = vfs_export(mp, &ump->um_export, &args.export); goto success; } -#endif /* XXX MFS does not support name updating*/ goto success; |