1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 03:02:22 -05:00

LDAP: fix 3043659, include entries starting with Z

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1337 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-08-13 22:34:26 +00:00
parent ec5063505d
commit 9d00702c19

View File

@ -1297,7 +1297,7 @@ public class LdapConnection extends AbstractConnection {
}
}
// full search
for (char c = 'A'; c < 'Z'; c++) {
for (char c = 'A'; c <= 'Z'; c++) {
if (!abandon && persons.size() < sizeLimit) {
for (ExchangeSession.Contact person : session.galFind(session.startsWith("uid", String.valueOf(c)), returningAttributes, sizeLimit).values()) {
persons.put(person.get("uid"), person);