summaryrefslogtreecommitdiffstats
path: root/muttlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-08-19 06:23:43 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-08-19 06:23:43 +0000
commit03a287290143a90b08f7693dee92e7aaa18ebe4a (patch)
treefddebd1df08926f6656a627c86bc2bc390117eb8 /muttlib.c
parentaa44cc174d49d2fc86594b6b513a0a4499e81bd7 (diff)
Ian Bell (turnpike) reports that Outlook Express expects the
boundary parameter to be the _last_ MIME parameter on a multipart/* body part, and otherwise displays messages as empty.
Diffstat (limited to 'muttlib.c')
-rw-r--r--muttlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/muttlib.c b/muttlib.c
index 1dcdff5b..c73d0e06 100644
--- a/muttlib.c
+++ b/muttlib.c
@@ -282,7 +282,7 @@ char *mutt_get_parameter (const char *s, PARAMETER *p)
void mutt_set_parameter (const char *attribute, const char *value, PARAMETER **p)
{
PARAMETER *q;
- for(q = *p; q; q = q->next)
+ for(q = *p; q; q = q->next)
{
if (mutt_strcasecmp (attribute, q->attribute) == 0)
{