aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-from.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-05-23 10:57:31 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-05-23 10:57:31 +0800
commit924869dd9cd945d7bbab04d4878706acb82734e4 (patch)
tree569ded94c0d5e76d16b4d5246abaed49a0a13bfd /camel/camel-mime-filter-from.c
parentd5999b60c924a3aad5852d33e0fad0dcaa6c266c (diff)
downloadgsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar.gz
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar.bz2
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar.lz
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar.xz
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.tar.zst
gsoc2013-evolution-924869dd9cd945d7bbab04d4878706acb82734e4.zip
dude, just stuff
svn path=/trunk/; revision=3166
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 */