Fix compilations warnings in pager.c
[apps/madmutt.git] / nntp / newsrc.c
index 6f3d867..fe774ad 100644 (file)
@@ -26,7 +26,6 @@
 #include "mx.h"
 #include "nntp.h"
 #include "rfc1524.h"
-#include "rfc2047.h"
 
 #include "lib/debug.h"
 
@@ -266,7 +265,7 @@ const char *nntp_format_str (char *dest, size_t destlen, char op,
   switch (op) {
   case 's':
     m_strcpy(fn, sizeof (fn), NewsServer);
-    str_tolower (fn);
+    m_strtolower(fn);
     snprintf (tmp, sizeof (tmp), "%%%ss", fmt);
     snprintf (dest, destlen, tmp, fn);
     break;