diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 4 | ||||
-rw-r--r-- | source3/winbindd/idmap_tdb2.c | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 5926d63f99..88dd21a38a 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -2683,9 +2683,9 @@ bin/adex.@SHLIBEXT@: $(BINARY_PREREQS) $(IDMAP_ADEX_OBJ) @echo "Building plugin $@" @$(SHLD_MODULE) $(IDMAP_ADEX_OBJ) -bin/tdb2.@SHLIBEXT@: $(BINARY_PREREQS) winbindd/idmap_tdb2.o +bin/tdb2.@SHLIBEXT@: $(BINARY_PREREQS) winbindd/idmap_tdb2.o winbindd/idmap_rw.o @echo "Building plugin $@" - @$(SHLD_MODULE) winbindd/idmap_tdb2.o + @$(SHLD_MODULE) winbindd/idmap_tdb2.o winbindd/idmap_rw.o bin/ldap.@SHLIBEXT@: $(BINARY_PREREQS) winbindd/idmap_ldap.o @echo "Building plugin $@" diff --git a/source3/winbindd/idmap_tdb2.c b/source3/winbindd/idmap_tdb2.c index a27d3c78e0..cb295ba003 100644 --- a/source3/winbindd/idmap_tdb2.c +++ b/source3/winbindd/idmap_tdb2.c @@ -33,6 +33,7 @@ #include "includes.h" #include "winbindd.h" +#include "idmap_rw.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_IDMAP @@ -40,6 +41,7 @@ struct idmap_tdb2_context { struct db_context *db; const char *script; /* script to provide idmaps */ + struct idmap_rw_ops *rw_ops; }; /* High water mark keys */ @@ -299,6 +301,16 @@ static NTSTATUS idmap_tdb2_db_init(struct idmap_domain *dom, talloc_free(config_option); } + ctx->rw_ops = talloc_zero(ctx, struct idmap_rw_ops); + if (ctx->rw_ops == NULL) { + DEBUG(0, ("Out of memory!\n")); + ret = NT_STATUS_NO_MEMORY; + goto failed; + } + + ctx->rw_ops->get_new_id = idmap_tdb2_get_new_id; + ctx->rw_ops->set_mapping = idmap_tdb2_set_mapping; + dom->private_data = ctx; ret = idmap_tdb2_open_db(dom); |