From: Rocco Rutte Date: Wed, 8 Apr 2009 14:25:38 +0000 (+0200) Subject: For %F, display Bcc recipient if no other recipients found. Closes #3157. X-Git-Tag: mutt-1-5-20-rel~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3747bd5b075e155b72874619d5532a565e7fc93b;p=mutt For %F, display Bcc recipient if no other recipients found. Closes #3157. --- diff --git a/hdrline.c b/hdrline.c index fe45096d..21adc282 100644 --- a/hdrline.c +++ b/hdrline.c @@ -121,6 +121,8 @@ static void make_from (ENVELOPE *hdr, char *buf, size_t len, int do_lists) snprintf (buf, len, "To %s", mutt_get_name (hdr->to)); else if (me && hdr->cc) snprintf (buf, len, "Cc %s", mutt_get_name (hdr->cc)); + else if (me && hdr->bcc) + snprintf (buf, len, "Bcc %s", mutt_get_name (hdr->bcc)); else if (hdr->from) strfcpy (buf, mutt_get_name (hdr->from), len); else