[asterisk-commits] russell: trunk r289335 - in /trunk: ./ res/res_config_ldap.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 29 15:24:54 CDT 2010
Author: russell
Date: Wed Sep 29 15:24:49 2010
New Revision: 289335
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=289335
Log:
Merged revisions 289333 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
................
r289333 | russell | 2010-09-29 15:20:23 -0500 (Wed, 29 Sep 2010) | 11 lines
Merged revisions 289332 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.6.2
........
r289332 | russell | 2010-09-29 15:15:57 -0500 (Wed, 29 Sep 2010) | 4 lines
Don't completely ignore md5secret from LDAP if the value does not begin with {md5}.
This fixes a problem that lmadsen ran in to where md5secret was not working for him.
........
................
Modified:
trunk/ (props changed)
trunk/res/res_config_ldap.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: trunk/res/res_config_ldap.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_config_ldap.c?view=diff&rev=289335&r1=289334&r2=289335
==============================================================================
--- trunk/res/res_config_ldap.c (original)
+++ trunk/res/res_config_ldap.c Wed Sep 29 15:24:49 2010
@@ -306,8 +306,6 @@
if (is_realmed_password_attribute) {
if (!strncasecmp(valptr, "{md5}", 5)) {
valptr += 5;
- } else {
- valptr = NULL;
}
ast_debug(2, "md5: %s\n", valptr);
}
@@ -428,8 +426,6 @@
if (is_realmed_password_attribute) {
if (strncasecmp(valptr, "{md5}", 5) == 0) {
valptr += 5;
- } else {
- valptr = NULL;
}
ast_debug(2, "md5: %s\n", valptr);
}
More information about the asterisk-commits
mailing list