diff options
author | 1996-10-20 17:07:27 +0000 | |
---|---|---|
committer | 1996-10-20 17:07:27 +0000 | |
commit | a0bbd24d12cbeee074e119d3463eac5160bbb94e (patch) | |
tree | 9304d01d5e59b303e98c3679d359a757e64b460c | |
parent | Make support for booting over NFS dependent on NFSCLIENT instead of NETHER. (diff) | |
download | wireguard-openbsd-a0bbd24d12cbeee074e119d3463eac5160bbb94e.tar.xz wireguard-openbsd-a0bbd24d12cbeee074e119d3463eac5160bbb94e.zip |
Fix panic message if NFSCLIENT is not defined.
-rw-r--r-- | sys/nfs/nfs_boot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_boot.c b/sys/nfs/nfs_boot.c index 0cfe1606723..bd765e0b705 100644 --- a/sys/nfs/nfs_boot.c +++ b/sys/nfs/nfs_boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_boot.c,v 1.6 1996/10/20 17:05:21 briggs Exp $ */ +/* $OpenBSD: nfs_boot.c,v 1.7 1996/10/20 17:07:27 briggs Exp $ */ /* $NetBSD: nfs_boot.c,v 1.26 1996/05/07 02:51:25 thorpej Exp $ */ /* @@ -60,7 +60,7 @@ int nfs_boot_init(nd, procp) struct nfs_diskless *nd; struct proc *procp; { - panic("nfs_boot_init: no ether"); + panic("nfs_boot_init: NFSCLIENT not enabled in kernel"); } void |