summaryrefslogtreecommitdiff
path: root/source3/include/smb_macros.h
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2008-02-28 15:49:57 +0100
committerKarolin Seeger <kseeger@samba.org>2008-02-28 15:53:43 +0100
commite1b32594c70ee57f16c84adb7910aa5c84a560f8 (patch)
tree6abd929e1bd75db182387f0bdde8d7771506f345 /source3/include/smb_macros.h
parent707012ab5f8b9a14766f11a2358403593c30758d (diff)
downloadsamba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.tar.gz
samba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.tar.bz2
samba-e1b32594c70ee57f16c84adb7910aa5c84a560f8.zip
Remove smbmount.
Karolin (This used to be commit 5fbd98f7065268ae134108310119078ad8f62322)
Diffstat (limited to 'source3/include/smb_macros.h')
-rw-r--r--source3/include/smb_macros.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h
index 463a2bdb0b..c98c4244de 100644
--- a/source3/include/smb_macros.h
+++ b/source3/include/smb_macros.h
@@ -305,10 +305,9 @@ NULL returns on zero request. JRA.
#define talloc_destroy(ctx) talloc_free(ctx)
#define TALLOC_FREE(ctx) do { if ((ctx) != NULL) {talloc_free(ctx); ctx=NULL;} } while(0)
-/* only define PARANOID_MALLOC_CHECKER with --enable-developer and not compiling
- the smbmount utils */
+/* only define PARANOID_MALLOC_CHECKER with --enable-developer */
-#if defined(DEVELOPER) && !defined(SMBMOUNT_MALLOC)
+#if defined(DEVELOPER)
# define PARANOID_MALLOC_CHECKER 1
#endif