diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 06:31:23 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 06:31:23 +0000 |
commit | ef07127b3014742550b15cb163b595bafeebafb5 (patch) | |
tree | 649e2996e7bc47bb3e708fb921c68b2f1dec67d8 | |
parent | dadae3bdd261e7768162448049952244abd7c8af (diff) | |
download | samba-ef07127b3014742550b15cb163b595bafeebafb5.tar.gz samba-ef07127b3014742550b15cb163b595bafeebafb5.tar.bz2 samba-ef07127b3014742550b15cb163b595bafeebafb5.zip |
strictly, you can't #if on somthing that may or may not be defined.
Andrew Bartlett
(This used to be commit 49bae0227323e811cb71ada24928d24f7dc56d1f)
-rw-r--r-- | source3/tdb/spinlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/tdb/spinlock.h b/source3/tdb/spinlock.h index d6a2ac6eb8..8b0e833ff5 100644 --- a/source3/tdb/spinlock.h +++ b/source3/tdb/spinlock.h @@ -1,7 +1,7 @@ #ifndef __SPINLOCK_H__ #define __SPINLOCK_H__ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include <config.h> #endif |