use m_strdup and m_strlen that are inlined for efficiency
[apps/madmutt.git] / main.c
diff --git a/main.c b/main.c
index 9af3581..27b8bc2 100644 (file)
--- a/main.c
+++ b/main.c
@@ -20,6 +20,7 @@
 #endif
 
 #include <lib-lib/mem.h>
+#include <lib-lib/str.h>
 #include <lib-lib/macros.h>
 
 #include "mutt.h"
@@ -30,7 +31,6 @@
 #include "mutt_idna.h"
 #include "xterm.h"
 
-#include "lib/str.h"
 #include "lib/debug.h"
 
 #include <string.h>
@@ -872,7 +872,7 @@ int main (int argc, char **argv)
       }
 
       if (subject)
-        msg->env->subject = str_dup (subject);
+        msg->env->subject = m_strdup(subject);
 
       if (includeFile)
         infile = includeFile;
@@ -899,7 +899,7 @@ int main (int argc, char **argv)
         fin = NULL;
 
       mutt_mktemp (buf);
-      tempfile = str_dup (buf);
+      tempfile = m_strdup(buf);
 
       if (draftFile)
         msg->env = mutt_read_rfc822_header (fin, NULL, 1, 0);