aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-05-03 08:38:45 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-05-03 08:38:45 +0800
commitb3a906a2eca869ccd2dcd4a067aa60ede5b25ddb (patch)
tree64e849bf6ccad9827eb66e2b2d1d430f74259e33 /camel/camel-mime-utils.c
parent13711e101fa7c465b14dd2b10941839056cd2e5c (diff)
downloadgsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar.gz
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar.bz2
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar.lz
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar.xz
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.tar.zst
gsoc2013-evolution-b3a906a2eca869ccd2dcd4a067aa60ede5b25ddb.zip
Fixed the fix for stupidly-broken-mailer bug #5 to work when multiple
2002-05-02 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (header_decode_mailbox): Fixed the fix for stupidly-broken-mailer bug #5 to work when multiple unescaped characters were in a row. Fixes bug #24140. svn path=/trunk/; revision=16672
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 148eea9a80..d32558096e 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -73,7 +73,7 @@ int free_count = 0;
#endif
/* for all non-essential warnings ... */
-#define w(x)
+#define w(x)
#define d(x)
#define d2(x)
@@ -2388,7 +2388,7 @@ header_decode_mailbox(const char **in)
} else {
/* Fix for stupidly-broken-mailers that like to put '.''s in names unquoted */
/* see bug #8147 */
- if (*inptr && *inptr != '<') {
+ while (!pre && *inptr && *inptr != '<') {
w(g_warning("Working around stupid mailer bug #5: unescaped characters in names"));
name = g_string_append_c(name, *inptr++);
pre = header_decode_word(&inptr);
@@ -2994,7 +2994,7 @@ header_encode_param (const unsigned char *in, gboolean *encoded)
inbuf = in;
if (e_iconv (cd, &inbuf, &inleft, &outptr, &outleft) == (size_t) -1) {
- w(g_warning ("Conversion problem: conversion truncated: %s" g_strerror (errno)));
+ w(g_warning ("Conversion problem: conversion truncated: %s", g_strerror (errno)));
} else {
e_iconv (cd, NULL, 0, &outptr, &outleft);
}