1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-28 01:58:17 +03:00

lib/debug Add DEBUGC and DEBUGADDC as dummies

This allows code that needs to also compile against the source3
debug code to compile in source4.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2010-09-17 15:18:57 +10:00
parent ae52f953af
commit d406e511a5

View File

@ -63,6 +63,10 @@ extern int DEBUGLEVEL;
*/
#define DEBUGADD(level, body) _DEBUG(level, body, false)
/* Compatiblity macros for the source3 calling convention */
#define DEBUGC(class, level, body) _DEBUG(level, body, true)
#define DEBUGADDC(class, level, body) _DEBUG(level, body, false)
/**
* Obtain indentation string for the debug log.
*