Fix so that we don't encode every single char in the word. Also, do we

2000-10-06  Jeffrey Stedfast  <fejj@helixcode.com>

	* camel-mime-utils.c (quoted_encode): Fix so that we don't encode
	every single char in the word. Also, do we need a safemask? I
	don't see why we would.
	(header_encode_string): Don't strip off the last char!!

svn path=/trunk/; revision=5766
This commit is contained in:
Jeffrey Stedfast
2000-10-06 19:05:22 +00:00
committed by Jeffrey Stedfast
parent 734f0a9402
commit ff1f5fc3dd
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
* camel-mime-utils.c (quoted_encode): Fix so that we don't encode
every single char in the word. Also, do we need a safemask? I
don't see why we would.
(header_encode_string): Don't strip off the last char!!
2000-10-06 Chris Toshok <toshok@helixcode.com>

View File

@ -1190,10 +1190,10 @@ header_encode_string(const unsigned char *in)
out = g_string_append_len(out, start, inptr-start);
break;
case 1:
rfc2047_encode_word(out, start, inptr-start-1, "ISO-8859-1", IS_ESAFE);
rfc2047_encode_word(out, start, inptr-start, "ISO-8859-1", IS_ESAFE);
break;
case 2:
rfc2047_encode_word(out, start, inptr-start-1,
rfc2047_encode_word(out, start, inptr-start,
camel_charset_best(start, inptr-start-1), IS_ESAFE);
break;
}