diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-24 02:13:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:17 -0500 |
commit | 2b2c7ee2f0b5319afde788e244af9dc161500a4c (patch) | |
tree | 8473ae3b3cbb6cd2a188790ed43ca60cb2a66323 /source4/lib | |
parent | 311e26246c62af508c25895b6c0d93b1f572c2c7 (diff) | |
download | samba-2b2c7ee2f0b5319afde788e244af9dc161500a4c.tar.gz samba-2b2c7ee2f0b5319afde788e244af9dc161500a4c.tar.bz2 samba-2b2c7ee2f0b5319afde788e244af9dc161500a4c.zip |
r18862: as andrew pointed our on irc, if we are going to define _TRUE, then
better make it be true :)
(This used to be commit 4bda5ed3f9fda437c3f9b7e8ce83853999601c74)
Diffstat (limited to 'source4/lib')
-rw-r--r-- | source4/lib/replace/replace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index edcdebe6bd..01f626390c 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -357,10 +357,10 @@ typedef int bool; #endif #ifndef _TRUE -#define _TRUE +#define _TRUE true #endif #ifndef _FALSE -#define _FALSE +#define _FALSE false #endif #ifndef HAVE_FUNCTION_MACRO |