X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/14c29200cb58d3c4a0830265f2433849781858d0..6e379aa69edcac0c46b79aa888fb7650297f6944:/hdrline.c diff --git a/hdrline.c b/hdrline.c index 1e63f78..21adc28 100644 --- a/hdrline.c +++ b/hdrline.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1996-2000,2002 Michael R. Elkins + * Copyright (C) 1996-2000,2002,2007 Michael R. Elkins * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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