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/lib/smbldap.c | |
parent | af50d7a57fcc69d0bc5928410618f253071e9759 (diff) | |
download | samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.tar.gz samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.tar.xz samba-65e2944c678a7d4d111ee00e9e964fde14b163a6.zip |
s3-smbldap: extend smbldap_init() with binddn/bindsecret arguments.
Guenther
Diffstat (limited to 'source3/lib/smbldap.c')
-rw-r--r-- | source3/lib/smbldap.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index ea21ed6b4b8..5a1ba09ff13 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -1703,6 +1703,9 @@ static int smbldap_state_destructor(struct smbldap_state *state) NTSTATUS smbldap_init(TALLOC_CTX *mem_ctx, struct tevent_context *tevent_ctx, const char *location, + bool anon, + const char *bind_dn, + const char *bind_secret, struct smbldap_state **smbldap_state) { *smbldap_state = talloc_zero(mem_ctx, struct smbldap_state); |