From c74601e0b333f81570dfca6959e047d83e6ab32c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 Nov 2010 16:42:21 +1100 Subject: s4-ldb: added an override flag to ldb_register_backend() this will be used to allow a system ldb build with an ldb backend to have its ldap handler overridden by the s4 one --- source4/lib/ldb/ldb_tdb/ldb_tdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/ldb/ldb_tdb') diff --git a/source4/lib/ldb/ldb_tdb/ldb_tdb.c b/source4/lib/ldb/ldb_tdb/ldb_tdb.c index 90eb209ec5..4a96af3ab8 100644 --- a/source4/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/source4/lib/ldb/ldb_tdb/ldb_tdb.c @@ -1449,5 +1449,5 @@ static int ltdb_connect(struct ldb_context *ldb, const char *url, int ldb_tdb_init(const char *version) { - return ldb_register_backend("tdb", ltdb_connect); + return ldb_register_backend("tdb", ltdb_connect, false); } -- cgit