diff options
author | Günther Deschner <gd@samba.org> | 2011-11-15 23:56:38 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-11-16 12:26:26 +0100 |
commit | 65e2944c678a7d4d111ee00e9e964fde14b163a6 (patch) | |
tree | f583a2ed29949dc794b95f6e2966b6d4deb13296 /source3/winbindd | |
parent | af50d7a57fcc69d0bc5928410618f253071e9759 (diff) | |
download | samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.tar.gz samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.tar.bz2 samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.zip |
s3-smbldap: extend smbldap_init() with binddn/bindsecret arguments.
Guenther
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/idmap_ldap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/winbindd/idmap_ldap.c b/source3/winbindd/idmap_ldap.c index 5246cd3595..4f1dc8c7f4 100644 --- a/source3/winbindd/idmap_ldap.c +++ b/source3/winbindd/idmap_ldap.c @@ -488,8 +488,10 @@ static NTSTATUS idmap_ldap_db_init(struct idmap_domain *dom) ctx->rw_ops->get_new_id = idmap_ldap_allocate_id_internal; ctx->rw_ops->set_mapping = idmap_ldap_set_mapping; + /* get_credentials deals with setting up creds */ + ret = smbldap_init(ctx, winbind_event_context(), ctx->url, - &ctx->smbldap_state); + false, NULL, NULL, &ctx->smbldap_state); if (!NT_STATUS_IS_OK(ret)) { DEBUG(1, ("ERROR: smbldap_init (%s) failed!\n", ctx->url)); goto done; |