summaryrefslogtreecommitdiffstats
path: root/server/util/util.h
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-05-28 14:41:00 -0400
committerSimo Sorce <ssorce@redhat.com>2009-05-28 15:41:04 -0400
commit181f25a1fb70d47490c1b82e9e968f77e2fab019 (patch)
treeeefa3942329c0459c4aa5e95fa0b467bd503d109 /server/util/util.h
parent553b185f1c765855fe5f5ce9b29533261f80fcba (diff)
downloadsssd-181f25a1fb70d47490c1b82e9e968f77e2fab019.tar.gz
sssd-181f25a1fb70d47490c1b82e9e968f77e2fab019.tar.xz
sssd-181f25a1fb70d47490c1b82e9e968f77e2fab019.zip
Suppress "rootdse" error messages.
We will trap all LDB debug messages and pipe them into our internal DEBUG() function. LDB FATAL messages will still be printed by default, WARNING and TRACE functions will be at debug level 3 and 9, respectively.
Diffstat (limited to 'server/util/util.h')
-rw-r--r--server/util/util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/server/util/util.h b/server/util/util.h
index b3a7c7270..d328f3aec 100644
--- a/server/util/util.h
+++ b/server/util/util.h
@@ -11,6 +11,7 @@
#include "config.h"
#include "talloc.h"
#include "tevent.h"
+#include "ldb.h"
extern const char *debug_prg_name;
extern int debug_level;
@@ -54,6 +55,10 @@ struct main_context {
#include "util/dlinklist.h"
+/* From debug.c */
+void ldb_debug_messages(void *context, enum ldb_debug_level level,
+ const char *fmt, va_list ap);
+
/* from server.c */
int server_setup(const char *name, int flags,
const char *conf_entry,