Changeset 4963:5fc8c7cee1dd for imap
- Timestamp:
- 2007-03-06 18:13:14 (21 months ago)
- Branch:
- HEAD
- Files:
-
- 1 modified
-
imap/utf7.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imap/utf7.c
r4640 r4963 258 258 { 259 259 char *t = safe_strdup (*s); 260 if (!mutt_convert_string (&t, Charset, " UTF-8", 0))260 if (!mutt_convert_string (&t, Charset, "utf-8", 0)) 261 261 { 262 262 char *u7 = utf8_to_utf7 (t, strlen (t), NULL, 0); … … 273 273 { 274 274 char *t = utf7_to_utf8 (*s, strlen (*s), 0, 0); 275 if (t && !mutt_convert_string (&t, " UTF-8", Charset, 0))275 if (t && !mutt_convert_string (&t, "utf-8", Charset, 0)) 276 276 { 277 277 FREE (s); /* __FREE_CHECKED__ */
