remove yet anoter round of str_* functions, replaced with their inlineable
[apps/madmutt.git] / recvcmd.c
index 17ced5a..dff5aee 100644 (file)
--- a/recvcmd.c
+++ b/recvcmd.c
@@ -175,10 +175,10 @@ void mutt_attach_bounce (FILE * fp, HEADER * hdr,
     mutt_format_string (prompt, sizeof (prompt) - 4,
                         0, COLS - extra_space, 0, 0,
                         prompt, sizeof (prompt), 0);
-    str_cat (prompt, sizeof (prompt), "...?");
+    m_strcat(prompt, sizeof(prompt), "...?");
+  } else {
+    m_strcat(prompt, sizeof(prompt), "?");
   }
-  else
-    str_cat (prompt, sizeof (prompt), "?");
 
   if (query_quadoption (OPT_BOUNCE, prompt) != M_YES) {
     rfc822_free_address (&adr);
@@ -689,7 +689,7 @@ attach_reply_envelope_defaults (ENVELOPE * env, ATTACHPTR ** idx,
   if ((flags & SENDNEWS)) {
     /* in case followup set Newsgroups: with Followup-To: if it present */
     if (!env->newsgroups && curenv &&
-        str_casecmp (curenv->followup_to, "poster"))
+        m_strcasecmp(curenv->followup_to, "poster"))
       env->newsgroups = m_strdup(curenv->followup_to);
   }
   else