From 04faf1a93a80248c6f58268428eb16797a0776e1 Mon Sep 17 00:00:00 2001 From: Tom DeCanio Date: Fri, 16 Sep 2016 05:24:50 -0700 Subject: [PATCH] util-decode-mime: remove quote from boundary= string. remove quote from the end of the boundary= string. This was throwing off the mime parser so that it wouldn't always catch mime boundaries causing things like missed attachments. --- src/util-decode-mime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util-decode-mime.c b/src/util-decode-mime.c index 54902551fa..eb1dcab566 100644 --- a/src/util-decode-mime.c +++ b/src/util-decode-mime.c @@ -62,7 +62,7 @@ #define CTNT_DISP_STR "content-disposition" #define CTNT_TRAN_STR "content-transfer-encoding" #define MSG_ID_STR "message-id" -#define BND_START_STR "boundary=\"" +#define BND_START_STR "boundary=" #define TOK_END_STR "\"" #define MSG_STR "message/" #define MULTIPART_STR "multipart/"