projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c51fec
)
When binding anonymously, credentials are still needed.
author
Tilghman Lesher
<tilghman@meg.abyt.es>
Tue, 27 May 2008 13:30:10 +0000
(13:30 +0000)
committer
Tilghman Lesher
<tilghman@meg.abyt.es>
Tue, 27 May 2008 13:30:10 +0000
(13:30 +0000)
(closes issue #12601)
Reported by: suretec
Patches:
res_config_ldap.c.patch uploaded by suretec (license 70)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@118302
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_config_ldap.c
patch
|
blob
|
history
diff --git
a/res/res_config_ldap.c
b/res/res_config_ldap.c
index
b8816b9
..
7ce37c6
100644
(file)
--- 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");