X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=nntp%2Fnntp.c;h=2977f0c94ed5c7c5177b6a3e53437e99b76ab4bf;hb=90c36546d834608e1ce96f4142ef9a1f6b405a7c;hp=c9b1a02538f0ab11f3be0ed360f9c7ce98b7a752;hpb=22601f25ede6703ba7cd06ee84eddd2045308570;p=apps%2Fmadmutt.git diff --git a/nntp/nntp.c b/nntp/nntp.c index c9b1a02..2977f0c 100644 --- a/nntp/nntp.c +++ b/nntp/nntp.c @@ -17,11 +17,13 @@ #include #include #include +#include #include +#include + #include "mutt.h" -#include "mutt_curses.h" #include "sort.h" #include "mx.h" #include "mx_nntp.h" @@ -32,7 +34,6 @@ #include -#include "lib/debug.h" #include #include @@ -532,7 +533,7 @@ static void nntp_get_desc (NNTP_DATA * data, const char *mask, char *msg, progre if (data->nserv->hasXGTITLE) snprintf (buf, sizeof (buf), "XGTITLE %s\r\n", mask); else - snprintf (buf, sizeof (buf), "LIST NEWSGROUPS %s\r\n", mask); + snprintf (buf, sizeof (buf), "string_list_t NEWSGROUPS %s\r\n", mask); if (mutt_nntp_fetch (data, buf, msg, bar, parse_description, data->nserv, 0) != 0) { #ifdef DEBUG @@ -583,7 +584,7 @@ static int nntp_parse_xover (CONTEXT * ctx, char *buf, HEADER * hdr) hdr->env->subject = m_strdup(b); break; case 2: - address_delete (&hdr->env->from); + address_list_wipe(&hdr->env->from); hdr->env->from = rfc822_parse_adrlist (hdr->env->from, b); /* same as for mutt_parse_rfc822_line(): * don't leave from info NULL if there's an invalid address (or @@ -604,7 +605,7 @@ static int nntp_parse_xover (CONTEXT * ctx, char *buf, HEADER * hdr) hdr->env->message_id = m_strdup(b); break; case 5: - mutt_free_list (&hdr->env->references); + string_list_wipe(&hdr->env->references); hdr->env->references = mutt_parse_references (b, 0); break; case 6: @@ -892,7 +893,7 @@ int nntp_open_mailbox (CONTEXT * ctx) } if (m_strncmp("211", buf, 3)) { - LIST *l = serv->list; + string_list_t *l = serv->list; /* GROUP command failed */ if (!m_strncmp("411", buf, 3)) { @@ -1313,8 +1314,8 @@ int nntp_check_newgroups (NNTP_SERVER * serv, int force) { char buf[LONG_STRING]; NNTP_DATA nntp_data; - LIST *l; - LIST emp; + string_list_t *l; + string_list_t emp; time_t now; struct tm *t; @@ -1411,7 +1412,7 @@ int nntp_get_active (NNTP_SERVER * serv) { char msg[SHORT_STRING]; NNTP_DATA nntp_data; - LIST *tmp; + string_list_t *tmp; if (nntp_open_connection (serv) < 0) return -1; @@ -1424,9 +1425,9 @@ int nntp_get_active (NNTP_SERVER * serv) nntp_data.nserv = serv; nntp_data.group = NULL; - if (mutt_nntp_fetch (&nntp_data, "LIST\r\n", msg, NULL, add_group, serv, 0) < 0) { + if (mutt_nntp_fetch (&nntp_data, "string_list_t\r\n", msg, NULL, add_group, serv, 0) < 0) { #ifdef DEBUG - nntp_error ("nntp_get_active()", "LIST\r\n"); + nntp_error ("nntp_get_active()", "string_list_t\r\n"); #endif return -1; }