X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Fquery.c;h=d1933f8e8efbc659e573d12354c85ffb002d6dc2;hp=11fa388831a4489ac87619a91e4db7f50899ee27;hb=cc707c1e986b60f2c1c1932d0789038d465a7a59;hpb=230399f9632c37b66c1c117a17e8327eae6b3235 diff --git a/lib-ui/query.c b/lib-ui/query.c index 11fa388..d1933f8 100644 --- a/lib-ui/query.c +++ b/lib-ui/query.c @@ -7,15 +7,8 @@ * please see the file GPL in the top level source directory. */ -#if HAVE_CONFIG_H -# include "config.h" -#endif - -#include -#include -#include - #include + #include #include @@ -83,7 +76,7 @@ static QUERY *run_query (char *s, int quiet) int l; - mutt_expand_file_fmt (cmd, sizeof (cmd), QueryCmd, s); + m_quotefile_fmt(cmd, sizeof (cmd), QueryCmd, s); if ((thepid = mutt_create_filter (cmd, NULL, &fp, NULL)) < 0) { return 0; @@ -107,14 +100,14 @@ static QUERY *run_query (char *s, int quiet) cur = cur->next; } - l = mutt_strwidth (p); + l = m_strwidth(p); if (l > SecondColumn) SecondColumn = l; cur->addr = rfc822_parse_adrlist (cur->addr, p); p = strtok (NULL, "\t\n"); if (p) { - l = mutt_strwidth (p); + l = m_strwidth(p); if (l > FirstColumn) FirstColumn = l; cur->name = m_strdup(p); @@ -126,7 +119,7 @@ static QUERY *run_query (char *s, int quiet) } } p_delete(&buf); - fclose (fp); + m_fclose(&fp); if (mutt_wait_filter (thepid)) { if (!quiet) mutt_error ("%s", msg); @@ -166,7 +159,7 @@ static int query_search (MUTTMENU * m, regex_t * re, int n) static void query_entry (char *s, ssize_t slen, MUTTMENU * m, int num) { ENTRY *table = (ENTRY *) m->data; - char buf2[SHORT_STRING], buf[SHORT_STRING] = ""; + char buf2[STRING], buf[STRING] = ""; /* need a query format ... hard coded constants are not good */ while (FirstColumn + SecondColumn > 70) { @@ -178,7 +171,7 @@ static void query_entry (char *s, ssize_t slen, MUTTMENU * m, int num) SecondColumn = QUERY_MIN_COLUMN_LENGHT; } - rfc822_write_address (buf, sizeof (buf), table[num].data->addr, 1); + rfc822_addrcat(buf, sizeof (buf), table[num].data->addr, 1); mutt_format_string (buf2, sizeof (buf2), FirstColumn + 2, FirstColumn + 2, @@ -220,7 +213,7 @@ int mutt_query_complete (char *buf, ssize_t buflen) tmpa = result_to_addr (results); mutt_addrlist_to_local (tmpa); buf[0] = '\0'; - rfc822_write_address (buf, buflen, tmpa, 0); + rfc822_addrcat(buf, buflen, tmpa, 0); address_list_wipe(&tmpa); mutt_clear_error (); return (0); @@ -257,7 +250,7 @@ static void query_menu (char *buf, ssize_t buflen, QUERY * results, int retbuf) QUERY *queryp = NULL; int i, done = 0; int op; - char helpstr[SHORT_STRING]; + char helpstr[STRING]; char title[STRING]; snprintf (title, sizeof (title), _("Query")); /* FIXME */ @@ -433,7 +426,7 @@ static void query_menu (char *buf, ssize_t buflen, QUERY * results, int retbuf) mutt_addrlist_to_local (tmpa); tagged = 1; - rfc822_write_address (buf, buflen, tmpa, 0); + rfc822_addrcat(buf, buflen, tmpa, 0); curpos = m_strlen(buf); address_list_wipe(&tmpa); } @@ -441,9 +434,8 @@ static void query_menu (char *buf, ssize_t buflen, QUERY * results, int retbuf) address_t *tmpa = result_to_addr (QueryTable[i].data); mutt_addrlist_to_local (tmpa); - strcat (buf, ", "); /* __STRCAT_CHECKED__ */ - rfc822_write_address ((char *) buf + curpos + 1, - buflen - curpos - 1, tmpa, 0); + m_strcat(buf, buflen, ", "); + rfc822_addrcat(buf + curpos + 1, buflen - curpos - 1, tmpa, 0); curpos = m_strlen(buf); address_list_wipe(&tmpa); } @@ -454,7 +446,7 @@ static void query_menu (char *buf, ssize_t buflen, QUERY * results, int retbuf) address_t *tmpa = result_to_addr (QueryTable[menu->current].data); mutt_addrlist_to_local (tmpa); - rfc822_write_address (buf, buflen, tmpa, 0); + rfc822_addrcat(buf, buflen, tmpa, 0); address_list_wipe(&tmpa); }