X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=alias.c;h=a4e984f0be2cda9bcc9b3327466f56db818c5844;hp=222a01c7fd835d0bd5e283a0ebbe92bb6af4afd7;hb=7f7a0be369840b290248e5b0302beb447fa1b3cd;hpb=308c7080ccca40d4865d8810f5528331d9ed61ff diff --git a/alias.c b/alias.c index 222a01c..a4e984f 100644 --- a/alias.c +++ b/alias.c @@ -15,9 +15,9 @@ #include #include +#include #include -#include "lib/str.h" #include "lib/rx.h" #include "lib/debug.h" @@ -75,7 +75,7 @@ static ADDRESS *mutt_expand_aliases_r (ADDRESS * a, LIST ** expn) if (!i) { u = p_new(LIST, 1); - u->data = str_dup (a->mailbox); + u->data = m_strdup(a->mailbox); u->next = *expn; *expn = u; w = rfc822_cpy_adr (t); @@ -257,7 +257,7 @@ retry_name: new = p_new(ALIAS, 1); new->self = new; - new->name = str_dup (buf); + new->name = m_strdup(buf); mutt_addrlist_to_local (adr); @@ -293,7 +293,7 @@ retry_name: mutt_free_alias (&new); return; } - new->addr->personal = str_dup (buf); + new->addr->personal = m_strdup(buf); buf[0] = 0; rfc822_write_address (buf, sizeof (buf), new->addr, 1); @@ -409,7 +409,7 @@ int mutt_alias_complete (char *s, size_t buflen) if (a->name && strstr (a->name, s) == a->name) { if (!bestname[0]) /* init */ strfcpy (bestname, a->name, - min (str_len (a->name) + 1, sizeof (bestname))); + min (m_strlen(a->name) + 1, sizeof (bestname))); else { for (i = 0; a->name[i] && a->name[i] == bestname[i]; i++); bestname[i] = 0; @@ -421,7 +421,7 @@ int mutt_alias_complete (char *s, size_t buflen) if (bestname[0] != 0) { if (str_cmp (bestname, s) != 0) { /* we are adding something to the completion */ - strfcpy (s, bestname, str_len (bestname) + 1); + strfcpy (s, bestname, m_strlen(bestname) + 1); return 1; }