]> git.llucax.com Git - software/mutt-debian.git/blobdiff - hdrline.c
informing the users of the new behavior of write_bcc
[software/mutt-debian.git] / hdrline.c
index fe45096d5ac59f5df800ef30298b99c1fbf6d0d1..21adc282a9645fc3db87b1ce54821d0e5eb52f1d 100644 (file)
--- 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