summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/ldb_ildap
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-03-20 21:44:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:58:58 -0500
commitbb1909e15e7a9f3cd79da2ce8b8ef90f1a557376 (patch)
tree4de860f4c78c2c5b590468b27274e8e563b18d00 /source4/lib/ldb/ldb_ildap
parentd0c7651a7d4a2fb3bd2531f4c37cdfd8c7af0fed (diff)
downloadsamba-bb1909e15e7a9f3cd79da2ce8b8ef90f1a557376.tar.gz
samba-bb1909e15e7a9f3cd79da2ce8b8ef90f1a557376.tar.bz2
samba-bb1909e15e7a9f3cd79da2ce8b8ef90f1a557376.zip
r14592: Add support for loading shared modules to LDB.
(This used to be commit f10fae23f0685b2d9c6174596e1c66d799f02c52)
Diffstat (limited to 'source4/lib/ldb/ldb_ildap')
-rw-r--r--source4/lib/ldb/ldb_ildap/ldb_ildap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_ildap/ldb_ildap.c b/source4/lib/ldb/ldb_ildap/ldb_ildap.c
index 2b43193864..3c6101bb1a 100644
--- a/source4/lib/ldb/ldb_ildap/ldb_ildap.c
+++ b/source4/lib/ldb/ldb_ildap/ldb_ildap.c
@@ -1069,5 +1069,7 @@ failed:
int ldb_ildap_init(void)
{
- return ldb_register_backend("ldap", ildb_connect);
+ return ldb_register_backend("ldap", ildb_connect) +
+ ldb_register_backend("ldapi", ildb_connect) +
+ ldb_register_backend("ldaps", ildb_connect);
}