]> git.llucax.com Git - software/mutt-debian.git/blob - debian/patches/upstream/350957-postponed-to-bcc.patch
8cf8be6a714ab82cd0534ca9805fa53c4ba0b4f9
[software/mutt-debian.git] / debian / patches / upstream / 350957-postponed-to-bcc.patch
1 For %F, display Bcc recipient if no other recipients found. 
2 Closes http://bugs.mutt.org/3157
3 See also http://bugs.debian.org/350957
4
5 --- a/hdrline.c
6 +++ b/hdrline.c
7 @@ -121,6 +121,8 @@
8      snprintf (buf, len, "To %s", mutt_get_name (hdr->to));
9    else if (me && hdr->cc)
10      snprintf (buf, len, "Cc %s", mutt_get_name (hdr->cc));
11 +  else if (me && hdr->bcc)
12 +    snprintf (buf, len, "Bcc %s", mutt_get_name (hdr->bcc));
13    else if (hdr->from)
14      strfcpy (buf, mutt_get_name (hdr->from), len);
15    else