diff options
author | Martin Pool <mbp@samba.org> | 2002-01-09 05:10:47 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-09 05:10:47 +0000 |
commit | abc6e70ca4824f7d7df5f4f68da4686018f9723c (patch) | |
tree | 3bc3c77c6ba29e0050e25a74846be221be630b3a /source3 | |
parent | 0e0c24b40d38515ca7110b357f74feb21b2459f5 (diff) | |
download | samba-abc6e70ca4824f7d7df5f4f68da4686018f9723c.tar.gz samba-abc6e70ca4824f7d7df5f4f68da4686018f9723c.tar.bz2 samba-abc6e70ca4824f7d7df5f4f68da4686018f9723c.zip |
Fix macro name controlling inclusion of DMALLOC.
(This used to be commit a57e13b8b661dd41e8036f862c708b5d3ced82e6)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/includes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 70fc41034c..6021ebb83b 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -981,7 +981,7 @@ int vasprintf(char **ptr, const char *format, va_list ap); /* dmalloc -- free heap debugger (dmalloc.org). This should be near * the *bottom* of include files so as not to conflict. */ -#ifdef DMALLOC +#ifdef ENABLE_DMALLOC # include <dmalloc.h> #endif |