X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=attach.c;h=96867b9cc7a04a9f2227bc6c626a4ac6ad34a4f3;hp=5480710bfb873ff386112972b685bb4577302d84;hb=2ea77d3b2827ba23feb756ce2fb936565ae38998;hpb=3e611c4b53a33408955152e1c9336f8643ea096e diff --git a/attach.c b/attach.c index 5480710..96867b9 100644 --- a/attach.c +++ b/attach.c @@ -279,7 +279,7 @@ static int is_mmnoask (const char *buf) int lng; if ((p = getenv ("MM_NOASK")) != NULL && *p) { - if (str_cmp (p, "1") == 0) + if (m_strcmp(p, "1") == 0) return (1); strfcpy (tmp, p, sizeof (tmp)); @@ -435,7 +435,7 @@ int mutt_view_attachment (FILE * fp, BODY * a, int flag, HEADER * hdr, if (rfc1524_expand_filename (entry->nametemplate, fname, tempfile, sizeof (tempfile))) { - if (fp == NULL && str_cmp (tempfile, a->filename)) { + if (fp == NULL && m_strcmp(tempfile, a->filename)) { /* send case: the file is already there */ if (safe_symlink (a->filename, tempfile) == -1) { if (mutt_yesorno (_("Can't match nametemplate, continue?"), M_YES)