commit df81de82641a9089889d208da552b6f2ca6cdd24
parent c4bb4f33ce4ca8e7f040aba158d0fa807f9b5d89
Author: Christoph Lohmann <20h@r-36.net>
Date: Wed, 25 Jul 2012 18:04:36 +0200
Fixing wrong whitespacing on additional header values.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mime.c b/mime.c
@@ -807,7 +807,7 @@ mime_parsebufintern(mime_t *mime, char *str, int len)
&value);
if (value != NULL && hdr != NULL) {
if (hdr->data != NULL) {
- part = smprintf(" %s", value);
+ part = smprintf("%s", value);
i = strlen(part);
key = memdupcat(hdr->data,
hdr->datalen-1,