X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=nntp%2Fnntp.c;h=0c7af826a0153a5669533e27eacc882d98618b48;hb=3d5533f226da9cd9f86236c658c26be01ebf1e87;hp=6869b21a9f2539ad491040c471705aaeb1fff4bf;hpb=d0dc8fb657cff90709c15d4b106415b868857f6a;p=apps%2Fmadmutt.git diff --git a/nntp/nntp.c b/nntp/nntp.c index 6869b21..0c7af82 100644 --- a/nntp/nntp.c +++ b/nntp/nntp.c @@ -30,7 +30,7 @@ #include "sidebar.h" #include "buffy.h" -#include "mutt_crypt.h" +#include #include "lib/debug.h" @@ -159,9 +159,9 @@ static int nntp_connect_and_auth (NNTP_SERVER * serv) else if (!m_strncmp("201", buf, 3)) mutt_message (_("Connected to %s. Posting NOT ok."), conn->account.host); else { - mutt_socket_close (conn); - str_skip_trailws (buf); - mutt_error ("%s", buf); + mutt_socket_close(conn); + m_strrtrim(buf); + mutt_error("%s", buf); sleep (2); return -1; } @@ -620,7 +620,7 @@ static int nntp_parse_xover (CONTEXT * ctx, char *buf, HEADER * hdr) hdr->env->xref = m_strdup(b); nntp_parse_xref (ctx, nntp_data->group, b, hdr); } - rfc2047_decode_envelope (hdr->env); + rfc2047_decode_envelope(hdr->env); if (!*p) return -1; b = p;