diff options
author | briggs <briggs@cvs.openbsd.org> | 1996-10-20 17:07:28 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1996-10-20 17:07:28 +0000 |
commit | 5d199e37d00ad804104477c687f68faf412860ec (patch) | |
tree | fe03e5dcda990b9c0c3a2a63913e8d8dd61ad30a | |
parent | f3250f7be82ced14528ca5bad9511d2a1adb82f3 (diff) |
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 |