[Commits] imap.c 1.179.2.266 1.179.2.267
colin at claws-mail.org
colin at claws-mail.org
Thu Oct 4 12:00:30 CEST 2012
Update of /home/claws-mail/claws/src
In directory srv:/tmp/cvs-serv4991/src
Modified Files:
Tag: gtk2
imap.c
Log Message:
2012-10-04 [colin] 3.8.1cvs84
* src/imap.c
Fix keywords with spaces
Index: imap.c
===================================================================
RCS file: /home/claws-mail/claws/src/imap.c,v
retrieving revision 1.179.2.266
retrieving revision 1.179.2.267
diff -u -d -r1.179.2.266 -r1.179.2.267
--- imap.c 28 Sep 2012 15:33:05 -0000 1.179.2.266
+++ imap.c 4 Oct 2012 10:00:28 -0000 1.179.2.267
@@ -2087,7 +2087,11 @@
break;
case MATCHCRITERIA_TAG:
- result = imap_search_new(IMAP_SEARCH_CRITERIA_TAG, NULL, match->expr, 0);
+ {
+ gchar *tmp = imap_utf8_to_modified_utf7(match->expr, TRUE);
+ result = imap_search_new(IMAP_SEARCH_CRITERIA_TAG, NULL, tmp, 0);
+ g_free(tmp);
+ }
break;
case MATCHCRITERIA_SUBJECT:
More information about the Commits
mailing list