X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=alias.c;h=efed62d962b00586228d7b9e021f80e15833c787;hb=c98480f8568e6c1bc927c6c5f2b5e80b4aa6548c;hp=a4e984f0be2cda9bcc9b3327466f56db818c5844;hpb=7f7a0be369840b290248e5b0302beb447fa1b3cd;p=apps%2Fmadmutt.git diff --git a/alias.c b/alias.c index a4e984f..efed62d 100644 --- a/alias.c +++ b/alias.c @@ -15,7 +15,9 @@ #include #include +#include #include +#include #include #include "lib/rx.h" @@ -23,7 +25,6 @@ #include "mutt.h" #include "enter.h" -#include "ascii.h" #include "mutt_curses.h" #include "mutt_idna.h" #include "mutt_menu.h" @@ -46,7 +47,7 @@ ADDRESS *mutt_lookup_alias (const char *s) ALIAS *t = Aliases; for (; t; t = t->next) - if (!str_casecmp (s, t->name)) + if (!m_strcasecmp(s, t->name)) return (t->addr); return (NULL); /* no such alias */ } @@ -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; @@ -597,7 +598,7 @@ static int alias_SortAlias (const void *a, const void *b) { ALIAS *pa = *(ALIAS **) a; ALIAS *pb = *(ALIAS **) b; - int r = str_casecmp (pa->name, pb->name); + int r = m_strcasecmp(pa->name, pb->name); return (RSORT (r)); } @@ -616,7 +617,7 @@ static int alias_SortAddress (const void *a, const void *b) r = 1; else if (pa->personal) { if (pb->personal) - r = str_casecmp (pa->personal, pb->personal); + r = m_strcasecmp(pa->personal, pb->personal); else r = 1; }