Mailinglist Archive: yast-commit (759 mails)
| < Previous | Next > |
[yast-commit] r45597 - in /branches/SuSE-SLE-10-SP1-Branch/ldap: VERSION package/yast2-ldap.changes src/LdapAgent.cc
- From: jsuchome@xxxxxxxxxxxxxxxx
- Date: Wed, 19 Mar 2008 10:40:02 -0000
- Message-id: <20080319104002.864C034AD2@xxxxxxxxxxxxxxxx>
Author: jsuchome
Date: Wed Mar 19 11:40:02 2008
New Revision: 45597
URL: http://svn.opensuse.org/viewcvs/yast?rev=45597&view=rev
Log:
- search for all attributes (this time pwdaccountlockedtime)
before modify action (bnc#364837)
- 2.13.6
Modified:
branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION
branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes
branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION Wed Mar 19 11:40:02 2008
@@ -1 +1 @@
-2.13.5
+2.13.6
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes Wed Mar 19
11:40:02 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Feb 26 16:49:30 CET 2008 - jsuchome@xxxxxxx
+
+- search for all attributes (this time pwdaccountlockedtime)
+ before modify action (bnc#364837)
+- 2.13.6
+
+-------------------------------------------------------------------
Wed Jan 10 13:09:18 CET 2007 - jsuchome@xxxxxxx
- ask attribute for 'usage' flag (required by F301179)
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc Wed Mar 19 11:40:02
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 + ")");
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Wed Mar 19 11:40:02 2008
New Revision: 45597
URL: http://svn.opensuse.org/viewcvs/yast?rev=45597&view=rev
Log:
- search for all attributes (this time pwdaccountlockedtime)
before modify action (bnc#364837)
- 2.13.6
Modified:
branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION
branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes
branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/VERSION Wed Mar 19 11:40:02 2008
@@ -1 +1 @@
-2.13.5
+2.13.6
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/package/yast2-ldap.changes Wed Mar 19
11:40:02 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Feb 26 16:49:30 CET 2008 - jsuchome@xxxxxxx
+
+- search for all attributes (this time pwdaccountlockedtime)
+ before modify action (bnc#364837)
+- 2.13.6
+
+-------------------------------------------------------------------
Wed Jan 10 13:09:18 CET 2007 - jsuchome@xxxxxxx
- ask attribute for 'usage' flag (required by F301179)
Modified: branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc
URL:
http://svn.opensuse.org/viewcvs/yast/branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc?rev=45597&r1=45596&r2=45597&view=diff
==============================================================================
--- branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc (original)
+++ branches/SuSE-SLE-10-SP1-Branch/ldap/src/LdapAgent.cc Wed Mar 19 11:40:02
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 + ")");
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |