X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=postpone.c;h=73a1057db1236db8d33dc9815d3803e34aef297c;hp=d37f0439fa6211fa1c72d292f8094325834cc1fb;hb=53186676acf2c3b5509a614433eb00a2087cd4ec;hpb=238b70e39b78f585c586bd51aef41988b3cc73d1 diff --git a/postpone.c b/postpone.c index d37f043..73a1057 100644 --- a/postpone.c +++ b/postpone.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "mutt.h" #include "enter.h" @@ -24,7 +25,6 @@ #include "mutt_menu.h" #include "rfc1524.h" #include "mime.h" -#include "mapping.h" #include "sort.h" #include "thread.h" #include "mx.h" @@ -298,8 +298,7 @@ int mutt_get_postponed (CONTEXT * ctx, HEADER * hdr, HEADER ** cur, char *fcc, if (ctx) { /* if a mailbox is currently open, look to see if the orignal message the user attempted to reply to is in this mailbox */ - p = tmp->data + 18; - SKIPWS (p); + p = vskipspaces(tmp->data + 18); if (!ctx->id_hash) ctx->id_hash = mutt_make_id_hash (ctx); *cur = hash_find (ctx->id_hash, p); @@ -318,8 +317,7 @@ int mutt_get_postponed (CONTEXT * ctx, HEADER * hdr, HEADER ** cur, char *fcc, code |= SENDREPLY; } else if (ascii_strncasecmp ("X-Mutt-Fcc:", tmp->data, 11) == 0) { - p = tmp->data + 11; - SKIPWS (p); + p = vskipspaces(tmp->data + 11); m_strcpy(fcc, fcclen, p); mutt_pretty_mailbox (fcc); @@ -409,8 +407,7 @@ int mutt_parse_crypt_hdr (char *p, int set_signas) if (!WithCrypto) return 0; - SKIPWS (p); - for (; *p; p++) { + for (p = vskipspaces(p); *p; p++) { switch (*p) { case 'e':