From 258bcc09af805c3f94d9dd9677459ef9ba62369a Mon Sep 17 00:00:00 2001 From: gwr Date: Tue, 2 Sep 1997 21:33:17 +0000 Subject: [PATCH] Change test from NETHER to NARP (revarpwhoami is in if_arp.c) --- sys/nfs/nfs_boot.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/sys/nfs/nfs_boot.c b/sys/nfs/nfs_boot.c index 17dac236a4cd..517a24fc6e5f 100644 --- a/sys/nfs/nfs_boot.c +++ b/sys/nfs/nfs_boot.c @@ -1,4 +1,4 @@ -/* $NetBSD: nfs_boot.c,v 1.35 1997/08/29 16:12:50 gwr Exp $ */ +/* $NetBSD: nfs_boot.c,v 1.36 1997/09/02 21:33:17 gwr Exp $ */ /*- * Copyright (c) 1995, 1997 The NetBSD Foundation, Inc. @@ -71,15 +71,14 @@ #include #include -#include "ether.h" -#if NETHER == 0 -/* XXX - Do we still need this? How can I tell? -gwr */ +#include "arp.h" +#if NARP == 0 int nfs_boot_init(nd, procp) struct nfs_diskless *nd; struct proc *procp; { - printf("nfs_boot: NETHER == 0\n"); + printf("nfs_boot: NARP == 0\n"); return (ENXIO); } @@ -90,7 +89,7 @@ nfs_boot_getfh(ndm) return (ENXIO); } -#else /* NETHER */ +#else /* NARP */ /* * There are two implementations of NFS diskless boot. @@ -382,4 +381,4 @@ out: return error; } -#endif /* NETHER */ +#endif /* NARP */