2006-05-16 [wwp] 2.2.0cvs20
authorTristan Chabredier <wwp@claws-mail.org>
Tue, 16 May 2006 09:42:16 +0000 (09:42 +0000)
committerTristan Chabredier <wwp@claws-mail.org>
Tue, 16 May 2006 09:42:16 +0000 (09:42 +0000)
* src/export.c
* src/matcher.c
* src/summaryview.c
* src/etpan/imap-thread.c
fix some compiler warnings (thanks to Colin).

ChangeLog
PATCHSETS
configure.ac
src/etpan/imap-thread.c
src/export.c
src/matcher.c
src/summaryview.c

index fd3df3f3b29a9f3297646a3aa74f1cdeba843f65..e156a8b36e6fba066e9db1a8263ffe9f26b4550d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-05-16 [wwp]       2.2.0cvs20
+
+       * src/export.c
+       * src/matcher.c
+       * src/summaryview.c
+       * src/etpan/imap-thread.c
+               fix some compiler warnings (thanks to Colin).
+
 2006-05-16 [wwp]       2.2.0cvs19
 
        * src/action.c
 2006-05-16 [wwp]       2.2.0cvs19
 
        * src/action.c
index 008e7996bd6bd214663a1f3f6140d3ef9a0bd66d..0f9a845a6bca0c85866c13cb973a0eb01cf4338a 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.1.2.2 -r 1.1.2.3 tools/filter_conv_new.pl;  ) > 2.2.0cvs17.patchset
 ( cvs diff -u -r 1.150.2.62 -r 1.150.2.63 src/procmsg.c;  ) > 2.2.0cvs18.patchset
 ( cvs diff -u -r 1.12.2.34 -r 1.12.2.35 src/action.c;  cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/gedit-print.c;  cvs diff -u -r 1.149.2.47 -r 1.149.2.48 src/inc.c;  cvs diff -u -r 1.274.2.110 -r 1.274.2.111 src/mainwindow.c;  cvs diff -u -r 1.79.2.25 -r 1.79.2.26 src/mh.c;  cvs diff -u -r 1.5.2.8 -r 1.5.2.9 src/statusbar.c;  cvs diff -u -r 1.17.2.27 -r 1.17.2.28 src/send_message.c;  cvs diff -u -r 1.395.2.198 -r 1.395.2.199 src/summaryview.c;  ) > 2.2.0cvs19.patchset
 ( cvs diff -u -r 1.1.2.2 -r 1.1.2.3 tools/filter_conv_new.pl;  ) > 2.2.0cvs17.patchset
 ( cvs diff -u -r 1.150.2.62 -r 1.150.2.63 src/procmsg.c;  ) > 2.2.0cvs18.patchset
 ( cvs diff -u -r 1.12.2.34 -r 1.12.2.35 src/action.c;  cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/gedit-print.c;  cvs diff -u -r 1.149.2.47 -r 1.149.2.48 src/inc.c;  cvs diff -u -r 1.274.2.110 -r 1.274.2.111 src/mainwindow.c;  cvs diff -u -r 1.79.2.25 -r 1.79.2.26 src/mh.c;  cvs diff -u -r 1.5.2.8 -r 1.5.2.9 src/statusbar.c;  cvs diff -u -r 1.17.2.27 -r 1.17.2.28 src/send_message.c;  cvs diff -u -r 1.395.2.198 -r 1.395.2.199 src/summaryview.c;  ) > 2.2.0cvs19.patchset
+( cvs diff -u -r 1.8.2.18 -r 1.8.2.19 src/export.c;  cvs diff -u -r 1.75.2.22 -r 1.75.2.23 src/matcher.c;  cvs diff -u -r 1.395.2.199 -r 1.395.2.200 src/summaryview.c;  cvs diff -u -r 1.1.4.35 -r 1.1.4.36 src/etpan/imap-thread.c;  ) > 2.2.0cvs20.patchset
index f6d748cd581f65855faf35812611465a3aea2c4f..2803b7669ffac3e216b60bcb2d60ceef5e382435 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=2
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=19
+EXTRA_VERSION=20
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 4bec14c7783d64d01e71cc0a7f277534a6cabbaa..465d14aec3ef2827bf74d38f151a0178649d5cd5 100644 (file)
@@ -338,7 +338,7 @@ static int etpan_certificate_check(const unsigned char *certificate, int len, vo
                g_warning("no cert presented.\n");
                return 0;
        }
                g_warning("no cert presented.\n");
                return 0;
        }
-       cert = d2i_X509(NULL, &certificate, len);
+       cert = d2i_X509(NULL, (unsigned char **) &certificate, len);
        if (cert == NULL) {
                g_warning("can't get cert\n");
                return 0;
        if (cert == NULL) {
                g_warning("can't get cert\n");
                return 0;
index 13693bbeb7fd0f68f70d5226bc19ed3aa8c44603..3fbaa55aacb458e288ab8b4beedadc81d1e088a3 100644 (file)
@@ -49,6 +49,7 @@
 #include "folder.h"
 #include "utils.h"
 #include "codeconv.h"
 #include "folder.h"
 #include "utils.h"
 #include "codeconv.h"
+#include "alertpanel.h"
 
 static GtkWidget *window;
 static GtkWidget *src_entry;
 
 static GtkWidget *window;
 static GtkWidget *src_entry;
index e63009cfd55356d9945facdeb24c074d2056cd34..1c38987195c52e1eb459675fb4ae4ef5775c713c 100644 (file)
@@ -390,7 +390,7 @@ static gboolean matcherprop_string_decode_match(MatcherProp *prop, const gchar *
                res = matcherprop_string_match(prop, tmp);
        }
        
                res = matcherprop_string_match(prop, tmp);
        }
        
-       if (res == FALSE && strchr(prop->expr, '=') || strchr(prop->expr, '_') ) {
+       if (res == FALSE && (strchr(prop->expr, '=') || strchr(prop->expr, '_')) ) {
                /* if searching for something with an equal char, maybe 
                 * we should try to match the non-decoded string. 
                 * In case it was not qp-encoded. */
                /* if searching for something with an equal char, maybe 
                 * we should try to match the non-decoded string. 
                 * In case it was not qp-encoded. */
index 10683e3148171bbeaff0b35a83b2433a780ab42e..0e3e08043c0191faf628263c64403cca9e0ab58e 100644 (file)
@@ -5923,7 +5923,7 @@ gint summaryview_export_mbox_list(SummaryView *summaryview)
        gint ret;
        
        if (mbox == NULL || list == NULL)
        gint ret;
        
        if (mbox == NULL || list == NULL)
-               return;
+               return -1;
                
        ret = export_list_to_mbox(list, mbox);
        
                
        ret = export_list_to_mbox(list, mbox);