From: Paul Mangan Date: Wed, 16 May 2012 07:24:59 +0000 (+0000) Subject: 2012-05-16 [paul] 3.8.0cvs43 X-Git-Tag: rel_3_8_1~16 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=1d999eaa69fb7ab2b92689167b548413a95a5ba9;ds=sidebyside 2012-05-16 [paul] 3.8.0cvs43 * src/matcher.c fix bug 2662, '"ag" quicksearch adds "1" to value' --- diff --git a/ChangeLog b/ChangeLog index f6ba20db1..c6fd359e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-05-16 [paul] 3.8.0cvs43 + + * src/matcher.c + fix bug 2662, '"ag" quicksearch adds "1" to value' + 2012-05-16 [paul] 3.8.0cvs42 * src/gtk/description_window.c diff --git a/PATCHSETS b/PATCHSETS index 42bddd346..68d8334a5 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -4359,3 +4359,4 @@ ( cvs diff -u -r 1.83.2.188 -r 1.83.2.189 src/mimeview.c; cvs diff -u -r 1.36.2.195 -r 1.36.2.196 src/common/utils.c; ) > 3.8.0cvs40.patchset ( cvs diff -u -r 1.4.2.40 -r 1.4.2.41 src/common/ssl_certificate.c; ) > 3.8.0cvs41.patchset ( cvs diff -u -r 1.5.2.32 -r 1.5.2.33 src/gtk/description_window.c; ) > 3.8.0cvs42.patchset +( cvs diff -u -r 1.75.2.69 -r 1.75.2.70 src/matcher.c; ) > 3.8.0cvs43.patchset diff --git a/configure.ac b/configure.ac index 89ae7f302..25aab8b29 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ MINOR_VERSION=8 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=42 +EXTRA_VERSION=43 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/matcher.c b/src/matcher.c index f8b1d7a3a..734a82503 100644 --- a/src/matcher.c +++ b/src/matcher.c @@ -925,7 +925,7 @@ gboolean matcherprop_match(MatcherProp *prop, 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