aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-crlf.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-06-13 07:20:16 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-06-13 07:20:16 +0800
commitee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120 (patch)
treead060fbbb1152e282a6bbba966fb2e282b72409c /camel/camel-mime-filter-crlf.c
parent9d229d236a05e5bc80efed761080341e8bb56397 (diff)
downloadgsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar.gz
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar.bz2
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar.lz
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar.xz
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.tar.zst
gsoc2013-evolution-ee7f4d32f9f2c9b9f1a5a291bc16b9bd5aac5120.zip
pop provider now uses the crlf filter
svn path=/trunk/; revision=3538
Diffstat (limited to 'camel/camel-mime-filter-crlf.c')
-rw-r--r--camel/camel-mime-filter-crlf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-filter-crlf.c b/camel/camel-mime-filter-crlf.c
index 63ebfca62b..5cc409d554 100644
--- a/camel/camel-mime-filter-crlf.c
+++ b/camel/camel-mime-filter-crlf.c
@@ -84,7 +84,7 @@ filter (CamelMimeFilter *f, char *in, size_t len, size_t prespace,
if (*p == '\n')
*q++ = '\r';
else
- if (do_dots && *(p - 1) == '\n' && *p == '.' && *(p + 1) != '.')
+ if (do_dots && *(p - 1) == '\n' && *p == '.')
*q++ = '.';
*q++ = *p++;
}