/*
- * Copyright (C) 1996-2000,2002 Michael R. Elkins <me@mutt.org>
+ * Copyright (C) 1996-2000,2002,2007 Michael R. Elkins <me@mutt.org>
*
* 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
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