diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-05-07 06:59:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:49 -0500 |
commit | 55739e9f860a2a8f27a99fc2f79905a8ed143fee (patch) | |
tree | 814befcf2b106109cc180b6dbd475291da3ecd18 /source3/utils | |
parent | bce78238fb84c201a9bdc6ee88a6ced38ee26768 (diff) | |
download | samba-55739e9f860a2a8f27a99fc2f79905a8ed143fee.tar.gz samba-55739e9f860a2a8f27a99fc2f79905a8ed143fee.tar.bz2 samba-55739e9f860a2a8f27a99fc2f79905a8ed143fee.zip |
r6640: Attempt to fix 'make everything' with the paranoid malloc checker.
Volker
(This used to be commit 3db2799822da3711b47b60ba13daa07205ced45f)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/log2pcaphex.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/utils/log2pcaphex.c b/source3/utils/log2pcaphex.c index 4804b99338..d07dc2a211 100644 --- a/source3/utils/log2pcaphex.c +++ b/source3/utils/log2pcaphex.c @@ -29,6 +29,11 @@ */ #include "includes.h" + +/* We don't care about the paranoid malloc checker in this standalone + program */ +#undef malloc + #include <assert.h> int quiet = 0; |