Author: jsuchome Date: Fri Feb 29 14:00:38 2008 New Revision: 45132
URL: http://svn.opensuse.org/viewcvs/yast?rev=45132&view=rev Log: - search for all attributes (this time pwdaccountlockedtime) before modify action (bnc#364837) - 2.13.6
Modified: branches/SuSE-SLE-10-SP2-Branch/ldap/VERSION branches/SuSE-SLE-10-SP2-Branch/ldap/package/yast2-ldap.changes branches/SuSE-SLE-10-SP2-Branch/ldap/src/LdapAgent.cc
Modified: branches/SuSE-SLE-10-SP2-Branch/ldap/VERSION URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/ldap/VE... ============================================================================== --- branches/SuSE-SLE-10-SP2-Branch/ldap/VERSION (original) +++ branches/SuSE-SLE-10-SP2-Branch/ldap/VERSION Fri Feb 29 14:00:38 2008 @@ -1 +1 @@ -2.13.5 +2.13.6
Modified: branches/SuSE-SLE-10-SP2-Branch/ldap/package/yast2-ldap.changes URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/ldap/pa... ============================================================================== --- branches/SuSE-SLE-10-SP2-Branch/ldap/package/yast2-ldap.changes (original) +++ branches/SuSE-SLE-10-SP2-Branch/ldap/package/yast2-ldap.changes Fri Feb 29 14:00:38 2008 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Feb 27 09:34:13 CET 2008 - jsuchome@suse.cz + +- search for all attributes (this time pwdaccountlockedtime) + before modify action (bnc#364837) +- 2.13.6 + +------------------------------------------------------------------- Wed Jan 10 13:09:18 CET 2007 - jsuchome@suse.cz
- ask attribute for 'usage' flag (required by F301179)
Modified: branches/SuSE-SLE-10-SP2-Branch/ldap/src/LdapAgent.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP2-Branch/ldap/sr... ============================================================================== --- branches/SuSE-SLE-10-SP2-Branch/ldap/src/LdapAgent.cc (original) +++ branches/SuSE-SLE-10-SP2-Branch/ldap/src/LdapAgent.cc Fri Feb 29 14:00:38 2008 @@ -176,7 +176,10 @@ YCPMap ret; LDAPSearchResults* entries = NULL; try { - entries = ldap->search (dn, 0, "objectclass=*", StringList(), true); + StringList attrs; + attrs.add ("*"); + attrs.add ("+"); + entries = ldap->search (dn, 0, "objectclass=*", attrs, true); } catch (LDAPException e) { debug_exception (e, "searching for attributes (with dn=" + dn + ")");
yast-commit@lists.opensuse.org