summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-08-19 17:45:08 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-08-19 17:45:08 +0000
commit18190c666a5fec09896ce59d5f8428ec185f00d1 (patch)
tree141d5e1c75330da23a791b0a2f1bb4ce88edb418
parenta2ac16a6911c85b010175d4c769996ccfa487d36 (diff)
add __sparc64__ to list of arch's not checked for bloated structures (also
correct alpha -> __alpha__)
-rw-r--r--sys/nfs/nfs_subs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_subs.c b/sys/nfs/nfs_subs.c
index 8f955d67864..865df00e28e 100644
--- a/sys/nfs/nfs_subs.c
+++ b/sys/nfs/nfs_subs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_subs.c,v 1.32 2001/06/27 04:58:46 art Exp $ */
+/* $OpenBSD: nfs_subs.c,v 1.33 2001/08/19 17:45:07 jason Exp $ */
/* $NetBSD: nfs_subs.c,v 1.27.4.3 1996/07/08 20:34:24 jtc Exp $ */
/*
@@ -1050,7 +1050,7 @@ nfs_init()
{
static struct timeout nfs_timer_to;
-#if !defined(alpha) && defined(DIAGNOSTIC)
+#if !defined(__alpha__) && !defined(__sparc64__) && defined(DIAGNOSTIC)
/*
* Check to see if major data structures haven't bloated.
*/