From d3dd14b70e1b0d25c75513bb8c3f5ecca8515ed4 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 28 Sep 2007 23:03:08 +0000 Subject: r25416: Add registry debug class. Guenther (This used to be commit b28dd747cb5a3d0eee865076eb4733dc123a6968) --- source3/include/debug.h | 1 + source3/lib/debug.c | 1 + 2 files changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/include/debug.h b/source3/include/debug.h index c976268c59..dca3bc008c 100644 --- a/source3/include/debug.h +++ b/source3/include/debug.h @@ -102,6 +102,7 @@ extern int DEBUGLEVEL; #define DBGC_LOCKING 16 #define DBGC_MSDFS 17 #define DBGC_DMAPI 18 +#define DBGC_REGISTRY 19 /* So you can define DBGC_CLASS before including debug.h */ #ifndef DBGC_CLASS diff --git a/source3/lib/debug.c b/source3/lib/debug.c index bd67196271..6aa34b59e8 100644 --- a/source3/lib/debug.c +++ b/source3/lib/debug.c @@ -166,6 +166,7 @@ static const char *default_classname_table[] = { "locking", /* DBGC_LOCKING */ "msdfs", /* DBGC_MSDFS */ "dmapi", /* DBGC_DMAPI */ + "registry", /* DBGC_REGISTRY */ NULL }; -- cgit