aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-27 13:30:59 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-05-27 13:30:59 +0000
commit0469a65ffea2938280a7c34e2a047d36bd243e7d (patch)
tree2c2a1d9bd99ed4b0d83efd952a60e4f366e06910 /res
parent4e84bd03f2b067660bb3feb9070a4d7b0b0e55de (diff)
Merged revisions 118302 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r118302 | tilghman | 2008-05-27 08:30:10 -0500 (Tue, 27 May 2008) | 6 lines When binding anonymously, credentials are still needed. (closes issue #12601) Reported by: suretec Patches: res_config_ldap.c.patch uploaded by suretec (license 70) ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@118303 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_config_ldap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/res/res_config_ldap.c b/res/res_config_ldap.c
index b8816b920..7ce37c65c 100644
--- a/res/res_config_ldap.c
+++ b/res/res_config_ldap.c
@@ -1504,7 +1504,9 @@ static int ldap_reconnect(void)
bind_result = ldap_sasl_bind_s(ldapConn, user, LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL);
} else {
ast_debug(2, "bind %s anonymously\n", url);
- bind_result = ldap_sasl_bind_s(ldapConn, NULL, LDAP_SASL_SIMPLE, NULL, NULL, NULL, NULL);
+ cred.bv_val = NULL;
+ cred.bv_len = 0;
+ bind_result = ldap_sasl_bind_s(ldapConn, NULL, LDAP_SASL_SIMPLE, &cred, NULL, NULL, NULL);
}
if (bind_result == LDAP_SUCCESS) {
ast_debug(2, "Successfully connected to database.\n");