fixed wrong return value
authorThorsten Maerz <torte@netztorte.de>
Thu, 2 Jan 2003 13:07:27 +0000 (13:07 +0000)
committerThorsten Maerz <torte@netztorte.de>
Thu, 2 Jan 2003 13:07:27 +0000 (13:07 +0000)
ChangeLog.claws
configure.in
src/procmsg.c

index 70604af92aed150cdfdda46b6e987900b6be95c5..01262cfcca56f9946722dd1f8fc7465776ed0427 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-02 [thorsten]  0.8.8claws40
+
+       * src/procmsg.c
+               fixed wrong return value
+
 2003-01-02 [thorsten]  0.8.8claws39
 
        * src/prefs.c
index 3164a5c1961eeedf814c3b7859d5db95851f8b21..2ebab6ba50a5566652d2758c95d4c859af6d661e 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=8
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws39
+EXTRA_VERSION=claws40
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 2c46273a89a995d2484476b3ac90a36f79cab2f9..3298c69fca0feb414b05dfe204432f5eb6ffc1fe 100644 (file)
@@ -1631,9 +1631,8 @@ gboolean procmsg_msg_has_flagged_parent_real(MsgInfo *info,
                                result = FALSE;
                        } else {
                                g_hash_table_insert(parentmsgs, info, "1");
-                               procmsg_msg_has_flagged_parent_real(tmp,
-                                               perm_flags, parentmsgs);
-                               result = TRUE;
+                               result = procmsg_msg_has_flagged_parent_real(
+                                   tmp, perm_flags, parentmsgs);
                        }
                        procmsg_msginfo_free(tmp);
                        return result;