diff options
author | Simo Sorce <idra@samba.org> | 2009-01-28 08:43:12 -0500 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2009-01-28 08:43:12 -0500 |
commit | 11e7110cee5c95bebe5f746287e7792e88cf6e83 (patch) | |
tree | 1cb140fbafd45c948868d048fd3b01539e2026d8 /ldb/include | |
parent | ebd7edeba105768909aba02ceee922b3c6708581 (diff) | |
download | sssd-11e7110cee5c95bebe5f746287e7792e88cf6e83.tar.gz sssd-11e7110cee5c95bebe5f746287e7792e88cf6e83.tar.bz2 sssd-11e7110cee5c95bebe5f746287e7792e88cf6e83.zip |
Add a memberof plugin so that we can properly apply the same group memberships
as in IPA if necessary.
This patch slightly modifies ldb to split out a modules header file without
exposing the private headers.
Diffstat (limited to 'ldb/include')
-rw-r--r-- | ldb/include/ldb_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ldb/include/ldb_private.h b/ldb/include/ldb_private.h index c0652882..6120025d 100644 --- a/ldb/include/ldb_private.h +++ b/ldb/include/ldb_private.h @@ -231,6 +231,8 @@ int ldb_sequence_number(struct ldb_context *ldb, enum ldb_sequence_type type, ui /* The following definitions come from lib/ldb/common/ldb_modules.c */ +struct ldb_context *ldb_module_get_ctx(struct ldb_module *module); + const char **ldb_modules_list_from_string(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *string); int ldb_load_modules_list(struct ldb_context *ldb, const char **module_list, struct ldb_module *backend, struct ldb_module **out); int ldb_load_modules(struct ldb_context *ldb, const char *options[]); |