1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-16 00:23:52 +03:00

r25081: Add modules_dir member to ldb_context that is used rather than a global

modulesdir setting. Samba always sets this to lp_modulesdir()/ldb
(This used to be commit e672380d21)
This commit is contained in:
Jelmer Vernooij
2007-09-11 15:42:19 +00:00
committed by Gerald (Jerry) Carter
parent c44019e1e3
commit ed2a1c718a
6 changed files with 31 additions and 20 deletions

View File

@@ -51,6 +51,7 @@ struct ldb_context *ldb_init(void *mem_ctx)
ldb_set_utf8_default(ldb);
ldb_set_create_perms(ldb, 0666);
ldb_set_modules_dir(ldb, LDB_MODULESDIR);
return ldb;
}