0.9.6claws3
authorChristoph Hohmann <reboot@gmx.ch>
Fri, 3 Oct 2003 17:39:39 +0000 (17:39 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Fri, 3 Oct 2003 17:39:39 +0000 (17:39 +0000)
* src/send_message.c
        fix missing format string bug found by
        Georgi Guninski <guninski@guninski.com>

ChangeLog.claws
configure.ac
src/send_message.c

index 112ee6f110a02e38b13edf91f35b44625a946f42..440a80cc009951a763a76d0be57bb658b68cb49b 100644 (file)
@@ -1,3 +1,9 @@
+2003-10-03 [christoph] 0.9.6claws3
+
+       * src/send_message.c
+               fix missing format string bug found by
+               Georgi Guninski <guninski@guninski.com>
+
 2003-10-03 [paul]      0.9.6claws2
 
        * po/zh_CN.po
index 43959f1171c1b8647577ff14faa2ebf54e3d23e5..83f1f53bbb77011e9d0ddbc0cb0ab9cf2c85ce2e 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=2
+EXTRA_VERSION=3
 if test $EXTRA_VERSION -eq 0; then
     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
 else
index 52b2726a57798dfbf992a841685dfdf65b0ab0c8..0327d3716eef271d1c3476077adc345c86d4d8a6 100644 (file)
@@ -608,7 +608,7 @@ static void send_put_error(Session *session)
        if (log_msg)
                log_warning("%s\n", log_msg);
        if (err_msg) {
-               alertpanel_error_log(err_msg);
+               alertpanel_error_log("%s", err_msg);
                g_free(err_msg);
        }
 }