rationnalize includes a lot:
[apps/madmutt.git] / imap / utf7.c
index e9ae15d..b21149b 100644 (file)
@@ -7,11 +7,7 @@
  * please see the file GPL in the top level source directory.
  */
 
-#if HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include <lib-lib/mem.h>
+#include <lib-lib/lib-lib.h>
 
 #include "mutt.h"
 #include "charset.h"
@@ -215,7 +211,7 @@ void imap_utf7_encode (char **s)
   if (Charset) {
     char *t = m_strdup(*s);
 
-    if (!mutt_convert_string (&t, Charset, "UTF-8", 0)) {
+    if (!mutt_convert_string (&t, Charset, "utf-8", 0)) {
       char *u7 = utf8_to_utf7 (t, strlen (t), NULL, 0);
       p_delete(s);
       *s = u7;
@@ -229,7 +225,7 @@ void imap_utf7_decode (char **s)
   if (Charset) {
     char *t = utf7_to_utf8 (*s, m_strlen(*s), 0, 0);
 
-    if (t && !mutt_convert_string (&t, "UTF-8", Charset, 0)) {
+    if (t && !mutt_convert_string (&t, "utf-8", Charset, 0)) {
       p_delete(s);
       *s = t;
     }