diff options
author | julian <julian@FreeBSD.org> | 1995-09-07 06:01:36 +0000 |
---|---|---|
committer | julian <julian@FreeBSD.org> | 1995-09-07 06:01:36 +0000 |
commit | fbfd1caf30f1f4bc84203c0527a7f83d6a0e895f (patch) | |
tree | b85e8b7bbaa173889673b9d38188924c7c52a913 /sys/miscfs/devfs/devfs_vfsops.c | |
parent | 2b3cebdb88b9a6c35c31ef6c5c8741c4cd420310 (diff) | |
download | FreeBSD-src-fbfd1caf30f1f4bc84203c0527a7f83d6a0e895f.zip FreeBSD-src-fbfd1caf30f1f4bc84203c0527a7f83d6a0e895f.tar.gz |
more cleanups.. lots of code shuffled around too
routines renamed.. more simplifications,
some warnings squashed.
Diffstat (limited to 'sys/miscfs/devfs/devfs_vfsops.c')
-rw-r--r-- | sys/miscfs/devfs/devfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/miscfs/devfs/devfs_vfsops.c b/sys/miscfs/devfs/devfs_vfsops.c index 4ac67f7..00b4933 100644 --- a/sys/miscfs/devfs/devfs_vfsops.c +++ b/sys/miscfs/devfs/devfs_vfsops.c @@ -1,7 +1,7 @@ /* * Written by Julian Elischer (julian@DIALix.oz.au) * - * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vfsops.c,v 1.4 1995/09/03 05:43:42 julian Exp $ + * $Header: /home/ncvs/src/sys/miscfs/devfs/devfs_vfsops.c,v 1.5 1995/09/06 09:29:17 julian Exp $ * * */ @@ -105,7 +105,7 @@ int mountdevfs( struct mount *mp, struct proc *p) /*proto*/ mp->mnt_stat.f_fsid.val[1] = MOUNT_DEVFS; mp->mnt_flag |= MNT_LOCAL; - if(error = devfs_make_plane(devfs_mp_p)) + if(error = dev_dup_plane(devfs_mp_p)) { mp->mnt_data = (qaddr_t)0; free((caddr_t)devfs_mp_p, M_DEVFSMNT); |