svn commit: samba r2924 - branches/SAMBA_3_0/source/tdb trunk/source/tdb

tpot at samba.org tpot at samba.org
Tue Oct 12 03:34:01 GMT 2004


Author: tpot
Date: 2004-10-12 03:34:01 +0000 (Tue, 12 Oct 2004)
New Revision: 2924

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/&rev=2924&nolog=1

Log:
Another #if that should be an #ifdef.

Modified:
   branches/SAMBA_3_0/source/tdb/spinlock.c
   trunk/source/tdb/spinlock.c


Changeset:
Modified: branches/SAMBA_3_0/source/tdb/spinlock.c
===================================================================
--- branches/SAMBA_3_0/source/tdb/spinlock.c	2004-10-11 21:09:36 UTC (rev 2923)
+++ branches/SAMBA_3_0/source/tdb/spinlock.c	2004-10-12 03:34:01 UTC (rev 2924)
@@ -27,7 +27,7 @@
 #include <config.h>
 #endif
 
-#if STANDALONE
+#ifdef STANDALONE
 #include <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
@@ -157,7 +157,7 @@
  * "sgi" and "_COMPILER_VERSION" are always defined by MIPSPro.
  */
 
-#if defined(STANDALONE)
+#ifdef STANDALONE
 
 /* MIPSPro 7.3 has "__inline" as an extension, but not "inline. */
 #define inline __inline

Modified: trunk/source/tdb/spinlock.c
===================================================================
--- trunk/source/tdb/spinlock.c	2004-10-11 21:09:36 UTC (rev 2923)
+++ trunk/source/tdb/spinlock.c	2004-10-12 03:34:01 UTC (rev 2924)
@@ -27,7 +27,7 @@
 #include <config.h>
 #endif
 
-#if STANDALONE
+#ifdef STANDALONE
 #include <stdlib.h>
 #include <stdio.h>
 #include <unistd.h>
@@ -157,7 +157,7 @@
  * "sgi" and "_COMPILER_VERSION" are always defined by MIPSPro.
  */
 
-#if defined(STANDALONE)
+#ifdef STANDALONE
 
 /* MIPSPro 7.3 has "__inline" as an extension, but not "inline. */
 #define inline __inline



More information about the samba-cvs mailing list