2006-08-01 [wwp] 2.4.0cvs11
authorTristan Chabredier <wwp@claws-mail.org>
Tue, 1 Aug 2006 12:53:33 +0000 (12:53 +0000)
committerTristan Chabredier <wwp@claws-mail.org>
Tue, 1 Aug 2006 12:53:33 +0000 (12:53 +0000)
* src/mbox.c
fix strict ISO C90 compliance.

ChangeLog
PATCHSETS
configure.ac
src/mbox.c

index b801bf18690ddd5296aef971160d4a8660fac522..28aef4fc08093952f59ce47cbd34b0fad5b370eb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-08-01 [wwp]       2.4.0cvs11
+
+       * src/mbox.c
+               fix strict ISO C90 compliance.
+
 2006-08-01 [wwp]       2.4.0cvs10
 
        * tools/update-po
index 6d011647c6f305c8771cb4231bf941fa1a822654..cc76de96d5937bbe3cb9a6939fe9a43bb47f70f4 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.100.2.40 -r 1.100.2.41 AUTHORS;  cvs diff -u -r 1.1.2.22 -r 1.1.2.23 src/gtk/authors.h;  ) > 2.4.0cvs8.patchset
 ( cvs diff -u -r 1.75.2.28 -r 1.75.2.29 src/matcher.c;  cvs diff -u -r 1.59.2.38 -r 1.59.2.39 src/prefs_filtering.c;  cvs diff -u -r 1.43.2.41 -r 1.43.2.42 src/prefs_matcher.c;  ) > 2.4.0cvs9.patchset
 ( cvs diff -u -r 1.2.14.1 -r 1.2.14.2 tools/update-po;  ) > 2.4.0cvs10.patchset
+( cvs diff -u -r 1.28.2.23 -r 1.28.2.24 src/mbox.c;  ) > 2.4.0cvs11.patchset
index 87bc935b82324bdec7d7b081f5b1e8b147b38455..03833483b333a1ef854ad2d2cd6fcfb96753e5d8 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=4
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=10
+EXTRA_VERSION=11
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 812233e6b650eb70804127fc164065df6d342b9e..53de346757778f58a276de747ca919cbeeeb8ebb 100644 (file)
@@ -481,8 +481,8 @@ gint export_list_to_mbox(GSList *mlist, const gchar *mbox)
 
        statusbar_print_all(_("Exporting to mbox..."));
        for (cur = mlist; cur != NULL; cur = cur->next) {
-               msginfo = (MsgInfo *)cur->data;
                int len;
+               msginfo = (MsgInfo *)cur->data;
 
                msg_fp = procmsg_open_message(msginfo);
                if (!msg_fp) {