svn commit: samba r18659 - in branches/SAMBA_3_0/source/include: .

metze at samba.org metze at samba.org
Tue Sep 19 00:29:42 GMT 2006


Author: metze
Date: 2006-09-19 00:29:41 +0000 (Tue, 19 Sep 2006)
New Revision: 18659

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18659

Log:
restore BOOL, sorry:-)

libreplace only provides 'bool' not BOOL

metze

Modified:
   branches/SAMBA_3_0/source/include/includes.h


Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h	2006-09-19 00:27:49 UTC (rev 18658)
+++ branches/SAMBA_3_0/source/include/includes.h	2006-09-19 00:29:41 UTC (rev 18659)
@@ -908,6 +908,11 @@
 #define MAX(a,b) ((a)>(b)?(a):(b))
 #endif
 
+#ifndef _BOOL
+typedef int BOOL;
+#define _BOOL       /* So we don't typedef BOOL again in vfs.h */
+#endif
+
 #ifdef HAVE_BROKEN_GETGROUPS
 #define GID_T int
 #else



More information about the samba-cvs mailing list