aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-from.c
diff options
context:
space:
mode:
Diffstat (limited to 'camel/camel-mime-filter-from.c')
-rw-r--r--camel/camel-mime-filter-from.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-filter-from.c b/camel/camel-mime-filter-from.c
index 271a97505f..719b9d708a 100644
--- a/camel/camel-mime-filter-from.c
+++ b/camel/camel-mime-filter-from.c
@@ -107,14 +107,14 @@ filter(CamelMimeFilter *mf, char *in, size_t len, size_t prespace, char **out, s
if (left > 0) {
midline = TRUE;
if (left < 5) {
- if (inptr[0] == 'F' || inptr[0] == 'f') {
+ if (inptr[0] == 'F') {
camel_mime_filter_backup(mf, inptr, left);
midline = FALSE;
inend = inptr;
break;
}
} else {
- if (!g_strncasecmp(inptr, "From ", 5)) {
+ if (!strncmp(inptr, "From ", 5)) {
fromcount++;
/* yes, we do alloc them on the stack ... at most we're going to get
len / 7 of them anyway */