mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-14 11:42:23 -05:00
LDAP: fix bug 2919463, escape quotes in search filter
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@896 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
3f22413dda
commit
fa7ed285b1
@ -1045,7 +1045,7 @@ public class LdapConnection extends AbstractConnection {
|
|||||||
if (mode == LDAP_SUBSTRING_FINAL || mode == LDAP_SUBSTRING_ANY) {
|
if (mode == LDAP_SUBSTRING_FINAL || mode == LDAP_SUBSTRING_ANY) {
|
||||||
buffer.append('%');
|
buffer.append('%');
|
||||||
}
|
}
|
||||||
buffer.append(value);
|
buffer.append(value.replaceAll("'", "''"));
|
||||||
// endsWith not supported by exchange, always append %
|
// endsWith not supported by exchange, always append %
|
||||||
buffer.append('%');
|
buffer.append('%');
|
||||||
buffer.append('\'');
|
buffer.append('\'');
|
||||||
|
Loading…
Reference in New Issue
Block a user