From 65e2944c678a7d4d111ee00e9e964fde14b163a6 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 15 Nov 2011 23:56:38 +0100 Subject: s3-smbldap: extend smbldap_init() with binddn/bindsecret arguments. Guenther --- source3/lib/smbldap.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index ea21ed6b4b..5a1ba09ff1 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); -- cgit