[Commits] matcher.c 1.75.2.69 1.75.2.70
claws at claws-mail.org
claws at claws-mail.org
Wed May 16 09:25:01 CEST 2012
Update of /home/claws-mail/claws/src
In directory srv:/tmp/cvs-serv24870/src
Modified Files:
Tag: gtk2
matcher.c
Log Message:
2012-05-16 [paul] 3.8.0cvs43
* src/matcher.c
fix bug 2662, '"ag" quicksearch adds "1" to value'
Index: matcher.c
===================================================================
RCS file: /home/claws-mail/claws/src/matcher.c,v
retrieving revision 1.75.2.69
retrieving revision 1.75.2.70
diff -u -d -r1.75.2.69 -r1.75.2.70
--- matcher.c 16 Feb 2011 07:16:08 -0000 1.75.2.69
+++ matcher.c 16 May 2012 07:24:59 -0000 1.75.2.70
@@ -925,7 +925,7 @@
t = time(NULL);
age = ((t - info->date_t) / (60 * 60 * 24));
- ret = (age > prop->value);
+ ret = (age >= prop->value);
/* debug output */
if (debug_filtering_session
More information about the Commits
mailing list