summaryrefslogtreecommitdiffstats
path: root/rfc2047.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-12-03 12:21:00 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-12-03 12:21:00 +0000
commit27acc3501eec575599725df34f87edf90b3a1547 (patch)
tree6527612bf478f9fe4b1e1520885f12df1b8bb21f /rfc2047.c
parent369a031ded930fc6a1b2998bd6d0ac4f46ffe397 (diff)
Properly tag quoted-printable encoded RFC 2047 strings with
$send_charset, not with $charset.
Diffstat (limited to 'rfc2047.c')
-rw-r--r--rfc2047.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfc2047.c b/rfc2047.c
index 9c99422c..959a4fea 100644
--- a/rfc2047.c
+++ b/rfc2047.c
@@ -44,7 +44,7 @@ static void q_encode_string (char *d,
if(hibit)
{
snprintf (charset, sizeof (charset), "=?%s?Q?",
- mutt_strcasecmp ("us-ascii", Charset) == 0 ? "unknown-8bit" : NONULL(Charset));
+ mutt_strcasecmp ("us-ascii", send_charset) == 0 ? "unknown-8bit" : NONULL(send_charset));
}
else
strfcpy(charset, "=?us-ascii?Q?", sizeof(charset));