i2003-05-19 Chris Toshok <toshok@ximian.com>
* backend/pas/pas-backend-ldap.c (func_beginswith): use the more convoluted (but more correct) query if evolutionPerson is supported. Fixes #42825. svn path=/trunk/; revision=21270
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2003-05-19 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* backend/pas/pas-backend-ldap.c (func_beginswith): use the more
|
||||
convoluted (but more correct) query if evolutionPerson is
|
||||
supported. Fixes #42825.
|
||||
|
||||
2003-05-19 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* backend/ebook/e-destination.c (use_default_book_cb): handle the
|
||||
|
||||
@@ -2617,7 +2617,8 @@ func_beginswith(struct _ESExp *f, int argc, struct _ESExpResult **argv, void *da
|
||||
else if (!strcmp (ldap_attr, "fileAs")) {
|
||||
if (ldap_data->bl->priv->evolutionPersonSupported)
|
||||
ldap_data->list = g_list_prepend(ldap_data->list,
|
||||
g_strdup_printf("(fileAs=%s*)", str));
|
||||
g_strdup_printf("(|(fileAs=%s*)(&(!(fileAs=*))(sn=%s*)))",
|
||||
str, str));
|
||||
else
|
||||
ldap_data->list = g_list_prepend(ldap_data->list,
|
||||
g_strdup_printf("(sn=%s*)", str));
|
||||
|
||||
Reference in New Issue
Block a user