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 | |
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')
-rw-r--r-- | source/include/adt_tree.h | 4 | ||||
-rw-r--r-- | source/include/includes.h | 4 | ||||
-rw-r--r-- | source/include/privileges.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/source/include/adt_tree.h b/source/include/adt_tree.h index 51b6fb1c88b..a053013a9bc 100644 --- a/source/include/adt_tree.h +++ b/source/include/adt_tree.h @@ -21,9 +21,9 @@ #ifndef ADT_TREE_H #define ADT_TREE_H -#ifndef _BOOL +#ifndef _UPPER_BOOL typedef int BOOL; -#define _BOOL +#define _UPPER_BOOL #endif 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 diff --git a/source/include/privileges.h b/source/include/privileges.h index 3f425f6d728..eac42e0ba93 100644 --- a/source/include/privileges.h +++ b/source/include/privileges.h @@ -93,9 +93,9 @@ typedef struct { uint32 attr; } LUID_ATTR; -#ifndef _BOOL +#ifndef _UPPER_BOOL typedef int BOOL; -#define _BOOL /* So we don't typedef BOOL again in vfs.h */ +#define _UPPER_BOOL #endif typedef struct { |