X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=query.c;h=e5dbd164cfc231ecf7bec8c1b3961882ee93f6c6;hp=58ece1f703e9dde5c5eec7df185aff8f630da612;hb=91d0c04349c9345f0ee29a61cc18dfc144b60edc;hpb=617e7d83d14e14e6a520a48e75437211b16c8834 diff --git a/query.c b/query.c index 58ece1f..e5dbd16 100644 --- a/query.c +++ b/query.c @@ -12,15 +12,16 @@ #endif #include +#include +#include +#include +#include #include "mutt.h" #include "mutt_menu.h" #include "mutt_idna.h" -#include "mapping.h" #include "sort.h" -#include "lib/intl.h" -#include "lib/str.h" #include "lib/debug.h" #include @@ -63,7 +64,7 @@ static ADDRESS *result_to_addr (QUERY * r) tmp = rfc822_cpy_adr (r->addr); if (!tmp->next && !tmp->personal) - tmp->personal = str_dup (r->name); + tmp->personal = m_strdup(r->name); mutt_addrlist_to_idna (tmp, NULL); return tmp; @@ -119,10 +120,10 @@ static QUERY *run_query (char *s, int quiet) l = mutt_strwidth (p); if (l > FirstColumn) FirstColumn = l; - cur->name = str_dup (p); + cur->name = m_strdup(p); p = strtok (NULL, "\t\n"); if (p) { - cur->other = str_dup (p); + cur->other = m_strdup(p); } } } @@ -186,7 +187,7 @@ static void query_entry (char *s, size_t slen, MUTTMENU * m, int num) mutt_format_string (buf2, sizeof (buf2), FirstColumn + 2, FirstColumn + 2, 0, ' ', table[num].data->name, - str_len (table[num].data->name), 0); + m_strlen(table[num].data->name), 0); snprintf (s, slen, " %c %3d %s %-*.*s %s", table[num].tagged ? '*' : ' ', @@ -432,7 +433,7 @@ static void query_menu (char *buf, size_t buflen, QUERY * results, int retbuf) int tagged = 0; size_t curpos = 0; - memset (buf, 0, buflen); + p_clear(buf, buflen); /* check for tagged entries */ for (i = 0; i < menu->max; i++) { @@ -443,7 +444,7 @@ static void query_menu (char *buf, size_t buflen, QUERY * results, int retbuf) mutt_addrlist_to_local (tmpa); tagged = 1; rfc822_write_address (buf, buflen, tmpa, 0); - curpos = str_len (buf); + curpos = m_strlen(buf); rfc822_free_address (&tmpa); } else if (curpos + 2 < buflen) { @@ -453,7 +454,7 @@ static void query_menu (char *buf, size_t buflen, QUERY * results, int retbuf) strcat (buf, ", "); /* __STRCAT_CHECKED__ */ rfc822_write_address ((char *) buf + curpos + 1, buflen - curpos - 1, tmpa, 0); - curpos = str_len (buf); + curpos = m_strlen(buf); rfc822_free_address (&tmpa); } }