drop the old string API fully.
[apps/madmutt.git] / muttlib.c
index 65705ca..73b2e5e 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -889,7 +889,7 @@ void mutt_save_path (char *d, size_t dsize, address_t * a)
       if ((p = strpbrk (d, "%@")))
         *p = 0;
     }
-    str_tolower (d);
+    m_strtolower(d);
   }
   else
     *d = 0;
@@ -1070,7 +1070,7 @@ void mutt_FormatString (char *dest,     /* output buffer */
                     data, flags);
 
         if (lower)
-          str_tolower (buf);
+          m_strtolower(buf);
         if (nodots) {
           char *p = buf;