diff options
author | 1997-01-20 09:42:18 +0000 | |
---|---|---|
committer | 1997-01-20 09:42:18 +0000 | |
commit | 510f6b538151e9901aa0d1b47dfd7487eee23fd0 (patch) | |
tree | abd31f8b2c7d1ba6e276a5b37ba38c73863f0a0c | |
parent | add union lkm, since it's supported by kernel. (diff) | |
download | wireguard-openbsd-510f6b538151e9901aa0d1b47dfd7487eee23fd0.tar.xz wireguard-openbsd-510f6b538151e9901aa0d1b47dfd7487eee23fd0.zip |
better use (NETHER == 0) instead of NETHER == 0
-rw-r--r-- | sys/nfs/nfs_boot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfs/nfs_boot.c b/sys/nfs/nfs_boot.c index b3488946e71..368dc397a6a 100644 --- a/sys/nfs/nfs_boot.c +++ b/sys/nfs/nfs_boot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_boot.c,v 1.8 1997/01/20 09:13:22 graichen Exp $ */ +/* $OpenBSD: nfs_boot.c,v 1.9 1997/01/20 09:42:18 graichen Exp $ */ /* $NetBSD: nfs_boot.c,v 1.26 1996/05/07 02:51:25 thorpej Exp $ */ /* @@ -54,7 +54,7 @@ #include <nfs/xdr_subs.h> #include <nfs/nfs_var.h> -#if !defined(NFSCLIENT) || NETHER == 0 +#if !defined(NFSCLIENT) || (NETHER == 0) int nfs_boot_init(nd, procp) struct nfs_diskless *nd; @@ -72,7 +72,7 @@ nfs_boot_getfh(bpsin, key, ndmntp) /* can not get here */ } -#else /* (if !defined(NFSCLIENT) || NETHER == 0) */ +#else /* (if !defined(NFSCLIENT) || (NETHER == 0)) */ /* * Support for NFS diskless booting, specifically getting information |