X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=alias.c;h=f79120689106c403c8f4d6e598b81caf5413dbea;hp=1ef818e33f8a77bae3308f7ce24c0f869d264ac6;hb=b07d69b15852a06183f7b2298436e18150c36958;hpb=ecaab35b973fbceb58b5ed174971c82762cc0199 diff --git a/alias.c b/alias.c index 1ef818e..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; @@ -403,7 +404,7 @@ int mutt_alias_complete (char *s, size_t buflen) #define min(a,b) ((aname && strstr (a->name, s) == a->name) { @@ -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;