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/libaddns | |
parent | 0a198e6096d24297995d761635044ad8081fb197 (diff) | |
download | samba-454d9590de6ff94a1edd7321e26af0f0978a356a.tar.gz |
r18784: hopefully fix the BOOL bug on AIX
metze
Diffstat (limited to 'source/libaddns')
-rw-r--r-- | source/libaddns/dns.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source/libaddns/dns.h b/source/libaddns/dns.h index a5d5ca04507..70c6d0bd22a 100644 --- a/source/libaddns/dns.h +++ b/source/libaddns/dns.h @@ -279,10 +279,9 @@ TXT 16 text strings typedef long HANDLE; -#ifndef _BOOL +#ifndef _UPPER_BOOL typedef int BOOL; - -#define _BOOL /* So we don't typedef BOOL again */ +#define _UPPER_BOOL #endif |