summaryrefslogtreecommitdiffstats
path: root/sys/security
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-05-30 07:32:58 +0000
committeralfred <alfred@FreeBSD.org>2002-05-30 07:32:58 +0000
commit26c9c27f03bdb0ef924ca84475566e77d01c14d5 (patch)
treee28fa7a497a1f756cd06d2e16ccb65be76af020c /sys/security
parent4320d2c0b94ff0dc507427f40628e753166b2815 (diff)
downloadFreeBSD-src-26c9c27f03bdb0ef924ca84475566e77d01c14d5.zip
FreeBSD-src-26c9c27f03bdb0ef924ca84475566e77d01c14d5.tar.gz
Check for defined(__i386__) instead of just defined(i386) since the compiler
will be updated to only define(__i386__) for ANSI cleanliness.
Diffstat (limited to 'sys/security')
-rw-r--r--sys/security/lomac/kernel_mmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/security/lomac/kernel_mmap.c b/sys/security/lomac/kernel_mmap.c
index 8e5330d..25e8792 100644
--- a/sys/security/lomac/kernel_mmap.c
+++ b/sys/security/lomac/kernel_mmap.c
@@ -207,7 +207,7 @@ mmap(td, uap)
/* Address range must be all in user VM space. */
if (VM_MAXUSER_ADDRESS > 0 && addr + size > VM_MAXUSER_ADDRESS)
return (EINVAL);
-#ifndef i386
+#ifndef __i386__
if (VM_MIN_ADDRESS > 0 && addr < VM_MIN_ADDRESS)
return (EINVAL);
#endif
OpenPOWER on IntegriCloud