summaryrefslogtreecommitdiffstats
path: root/sys/nfsclient
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2004-11-09 22:21:52 +0000
committerphk <phk@FreeBSD.org>2004-11-09 22:21:52 +0000
commit5eae02ee768f29a7e1870dd3077e3035bd7198a3 (patch)
tree4e88184008674f369af359880adf177d32de4950 /sys/nfsclient
parent37ad4f1923f750790407861ce00a1e96c5f1b0be (diff)
downloadFreeBSD-src-5eae02ee768f29a7e1870dd3077e3035bd7198a3.zip
FreeBSD-src-5eae02ee768f29a7e1870dd3077e3035bd7198a3.tar.gz
Detect root mount attempts on the flag, not on the NULL path.
Diffstat (limited to 'sys/nfsclient')
-rw-r--r--sys/nfsclient/nfs_vfsops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c
index 6cbe859..bde4c23 100644
--- a/sys/nfsclient/nfs_vfsops.c
+++ b/sys/nfsclient/nfs_vfsops.c
@@ -678,7 +678,7 @@ nfs_omount(struct mount *mp, char *path, caddr_t data, struct thread *td)
size_t len;
u_char nfh[NFSX_V3FHMAX];
- if (path == NULL)
+ if (mp->mnt_flag & MNT_ROOTFS)
return (nfs_mountroot(mp, td));
error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args));
if (error)
OpenPOWER on IntegriCloud