use m_strdup and m_strlen that are inlined for efficiency
[apps/madmutt.git] / commands.c
index de56182..52fe118 100644 (file)
@@ -13,6 +13,7 @@
 #endif
 
 #include <lib-lib/mem.h>
+
 #include <lib-lib/macros.h>
 
 #include "mutt.h"
@@ -41,7 +42,6 @@
 #include "buffy.h"
 #endif
 
-#include "lib/str.h"
 #include "lib/debug.h"
 
 #include <errno.h>
@@ -859,7 +859,7 @@ void mutt_edit_content_type (HEADER * h, BODY * b, FILE * fp)
     size_t l;
 
     for (p = b->parameter; p; p = p->next) {
-      l = str_len (buf);
+      l = m_strlen(buf);
 
       rfc822_cat (tmp, sizeof (tmp), p->value, MimeSpecials);
       snprintf (buf + l, sizeof (buf) - l, "; %s=%s", p->attribute, tmp);