X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/19304f7c526fbe36ba0db2fb80bcaf3bd974d81d..92a950882661a15ea3bd1e73be4e1a341d81e9b9:/hdrline.c?ds=sidebyside diff --git a/hdrline.c b/hdrline.c index fe45096..21adc28 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