2004-11-29 [colin] 0.9.12cvs175.1
authorColin Leroy <colin@colino.net>
Mon, 29 Nov 2004 08:18:16 +0000 (08:18 +0000)
committerColin Leroy <colin@colino.net>
Mon, 29 Nov 2004 08:18:16 +0000 (08:18 +0000)
* src/procmime.c
Sync with head (another format fix)

ChangeLog-gtk2.claws
PATCHSETS
configure.ac
src/procmime.c

index 6fa84dfdc55fc3eb109b22f76fcde96a9f09929c..ee66982eff1bbfa80e5ca26c9bc3c0f62fda95ce 100644 (file)
@@ -1,3 +1,8 @@
+2004-11-29 [colin]     0.9.12cvs175.1
+
+       * src/procmime.c
+               Sync with head (another format fix)
+
 2004-11-29 [colin]     0.9.12cvs174.1
 
        * src/pop.c
index 79cc535df82908dbb3f28d5441cfd999a6736394..4014e51166baf8fc4e87b33512eb426bd06203cd 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.1.2.13 -r 1.1.2.14 src/plugins/pgpmime/pgpmime.c; ) > 0.9.12cvs172.1.patchset
 ( cvs diff -u -r 1.11.2.5 -r 1.11.2.6 src/common/smtp.c; cvs diff -u -r 1.6.2.2 -r 1.6.2.3 src/common/smtp.h; ) > 0.9.12cvs173.1.patchset
 ( cvs diff -u -r 1.56.2.28 -r 1.56.2.29 src/pop.c; ) > 0.9.12cvs174.1.patchset
+( cvs diff -u -r 1.49.2.23 -r 1.49.2.24 src/procmime.c; ) > 0.9.12cvs175.1.patchset
index b37e90e74dc8794339a22738a9647a78e4acaae4..0c41914354ce4469bbc4dd1613dbebcd4fdaba40 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=12
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=174
+EXTRA_VERSION=175
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=.1
 
index c74dae89b38ebd18a7021f0f6f18216dce6cac21..a65e4b95355d65637d2233d5552b019b825aab57 100644 (file)
@@ -1756,7 +1756,7 @@ void procmime_write_mime_header(MimeInfo *mimeinfo, FILE *fp)
                if (mimeinfo->type == type_table->type) {
                        gchar *buf = g_strdup_printf(
                                "Content-Type: %s/%s", type_table->str, mimeinfo->subtype);
-                       fprintf(fp, buf);
+                       fprintf(fp, "%s", buf);
                        pdata->len = strlen(buf);
                        g_free(buf);
                        break;