diff options
Diffstat (limited to 'camel/providers/mbox/camel-mbox-parser.c')
-rw-r--r-- | camel/providers/mbox/camel-mbox-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/providers/mbox/camel-mbox-parser.c b/camel/providers/mbox/camel-mbox-parser.c index 7eee449f1d..7503470426 100644 --- a/camel/providers/mbox/camel-mbox-parser.c +++ b/camel/providers/mbox/camel-mbox-parser.c @@ -620,7 +620,7 @@ camel_mbox_parse_file (int fd, } /* is the next part a message delimiter ? */ - if (g_strncasecmp (parser->buffer + parser->current_position, + if (strncmp (parser->buffer + parser->current_position, parser->message_delimiter, parser->message_delimiter_length) == 0) { |