From af5fe3e10496b07e5d181e8f85b7566805201e94 Mon Sep 17 00:00:00 2001 From: Alfons Hoogervorst Date: Fri, 5 Dec 2003 18:17:44 +0000 Subject: [PATCH] * src/matcher.c fix comparison buglet ;-) and make `test` matcher work again --- ChangeLog.claws | 6 ++++++ configure.ac | 2 +- src/matcher.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index 81ada638b..abfc3b959 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2003-12-05 [alfons] 0.9.7claws24 + + * src/matcher.c + fix comparison buglet ;-) and make `test` matcher + work again + 2003-12-05 [alfons] 0.9.7claws23 * src/prefs_folder_item.c diff --git a/configure.ac b/configure.ac index d4f4c0d29..cac9efdd6 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=7 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=23 +EXTRA_VERSION=24 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/matcher.c b/src/matcher.c index 1d4325dae..ad22ee3bc 100644 --- a/src/matcher.c +++ b/src/matcher.c @@ -1347,7 +1347,7 @@ gchar *matching_build_command(const gchar *cmd, MsgInfo *info) size += STRLEN_DEFAULT(info->references, no_references) - 2; break; case 'F': /* file */ - if (filename != NULL) + if (filename == NULL) filename = folder_item_fetch_msg(info->folder, info->msgnum); if (filename == NULL) { -- 2.25.1