X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=alias.c;h=f79120689106c403c8f4d6e598b81caf5413dbea;hp=e287551053b50eb9937775306e113030f147dfc7;hb=c6b9d35ed9361e4defab9762a7480d5126405ae9;hpb=9274cbe8e6410ddb95ddc667faa678a29da85420 diff --git a/alias.c b/alias.c index e287551..f791206 100644 --- a/alias.c +++ b/alias.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include "lib/rx.h" @@ -66,7 +67,7 @@ static ADDRESS *mutt_expand_aliases_r (ADDRESS * a, LIST ** expn) if (t) { i = 0; for (u = *expn; u; u = u->next) { - if (str_cmp (a->mailbox, u->data) == 0) { /* alias already found */ + if (m_strcmp(a->mailbox, u->data) == 0) { /* alias already found */ debug_print(1, ("loop in alias found for '%s'\n", a->mailbox)); i = 1; break; @@ -419,7 +420,7 @@ int mutt_alias_complete (char *s, size_t buflen) } if (bestname[0] != 0) { - if (str_cmp (bestname, s) != 0) { + if (m_strcmp(bestname, s) != 0) { /* we are adding something to the completion */ strfcpy (s, bestname, m_strlen(bestname) + 1); return 1;