Author: jsuchome Date: Wed Feb 27 10:02:04 2008 New Revision: 45056 URL: http://svn.opensuse.org/viewcvs/yast?rev=45056&view=rev Log: - search for all attributes (this time pwdaccountlockedtime) before modify action (bnc#364837) - 2.16.0 Modified: trunk/ldap/VERSION trunk/ldap/package/yast2-ldap.changes trunk/ldap/src/LdapAgent.cc Modified: trunk/ldap/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap/VERSION?rev=45056&r1=45055&r2=45056&view=diff ============================================================================== --- trunk/ldap/VERSION (original) +++ trunk/ldap/VERSION Wed Feb 27 10:02:04 2008 @@ -1 +1 @@ -2.15.1 +2.16.0 Modified: trunk/ldap/package/yast2-ldap.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap/package/yast2-ldap.changes?rev=45056&r1=45055&r2=45056&view=diff ============================================================================== --- trunk/ldap/package/yast2-ldap.changes (original) +++ trunk/ldap/package/yast2-ldap.changes Wed Feb 27 10:02:04 2008 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Feb 27 09:36:35 CET 2008 - jsuchome@suse.cz + +- search for all attributes (this time pwdaccountlockedtime) + before modify action (bnc#364837) +- 2.16.0 + +------------------------------------------------------------------- Mon Mar 5 16:06:34 CET 2007 - jsuchome@suse.cz - return information that "starting TLS" failed (#246397) Modified: trunk/ldap/src/LdapAgent.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap/src/LdapAgent.cc?rev=45056&r1=45055&r2=45056&view=diff ============================================================================== --- trunk/ldap/src/LdapAgent.cc (original) +++ trunk/ldap/src/LdapAgent.cc Wed Feb 27 10:02:04 2008 @@ -177,7 +177,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 + ")"); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org