diff options
| author | 1997-04-18 09:28:03 +0000 | |
|---|---|---|
| committer | 1997-04-18 09:28:03 +0000 | |
| commit | 5340c135e13e09c89e949aaa1a482fcbbbbecd71 (patch) | |
| tree | 9ce3c331c9645ae2ef466cfae085a364952c2209 /sys/nfs/nfs_vfsops.c | |
| parent | indent (diff) | |
| download | wireguard-openbsd-5340c135e13e09c89e949aaa1a482fcbbbbecd71.tar.xz wireguard-openbsd-5340c135e13e09c89e949aaa1a482fcbbbbecd71.zip | |
ensure nfs_mountroot device is a network device; from who-knows-who at
netbsd but who-can-tell because they don't make their cvs tree available
so that people can check and give proper credit.
Diffstat (limited to '')
| -rw-r--r-- | sys/nfs/nfs_vfsops.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 0e00077f5c4..8d78d586c72 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_vfsops.c,v 1.16 1997/01/15 03:52:27 kstailey Exp $ */ +/* $OpenBSD: nfs_vfsops.c,v 1.17 1997/04/18 09:28:03 deraadt Exp $ */ /* $NetBSD: nfs_vfsops.c,v 1.46.4.1 1996/05/25 22:40:35 fvdl Exp $ */ /* @@ -268,6 +268,9 @@ nfs_mountroot() procp = curproc; /* XXX */ + if (root_device->dv_class != DV_IFNET) + return (ENODEV); + /* * XXX time must be non-zero when we init the interface or else * the arp code will wedge. [Fixed now in if_ether.c] |
