diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-21 08:48:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:00:57 -0500 |
commit | 454d9590de6ff94a1edd7321e26af0f0978a356a (patch) | |
tree | 4a984673aa84391709b2d55d44a41b6985797984 /source/include/includes.h | |
parent | 0a198e6096d24297995d761635044ad8081fb197 (diff) | |
download | samba-454d9590de6ff94a1edd7321e26af0f0978a356a.tar.gz samba-454d9590de6ff94a1edd7321e26af0f0978a356a.tar.xz samba-454d9590de6ff94a1edd7321e26af0f0978a356a.zip |
r18784: hopefully fix the BOOL bug on AIX
metze
Diffstat (limited to 'source/include/includes.h')
-rw-r--r-- | source/include/includes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/include/includes.h b/source/include/includes.h index bcf0fa42770..1dbf92f0360 100644 --- a/source/include/includes.h +++ b/source/include/includes.h @@ -612,9 +612,9 @@ struct timespec { #define MAX(a,b) ((a)>(b)?(a):(b)) #endif -#ifndef _BOOL +#ifndef _UPPER_BOOL typedef int BOOL; -#define _BOOL /* So we don't typedef BOOL again in vfs.h */ +#define _UPPER_BOOL #endif #ifdef HAVE_BROKEN_GETGROUPS |