diff options
author | Milan Crha <mcrha@redhat.com> | 2011-03-10 00:08:05 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:44 +0800 |
commit | b100e5d4ae046b7620139aa9437401cb5395aec4 (patch) | |
tree | dd19ff3cd14bc47f381bdc52a67c201010411b1b /em-format | |
parent | a76c64d353bd10d2fe1f3300a3aedecdd6e9c533 (diff) | |
download | gsoc2013-evolution-b100e5d4ae046b7620139aa9437401cb5395aec4.tar.gz gsoc2013-evolution-b100e5d4ae046b7620139aa9437401cb5395aec4.tar.zst gsoc2013-evolution-b100e5d4ae046b7620139aa9437401cb5395aec4.zip |
Bug #618440 - "Reply" does not always strip signatures
Diffstat (limited to 'em-format')
-rw-r--r-- | em-format/em-stripsig-filter.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/em-format/em-stripsig-filter.c b/em-format/em-stripsig-filter.c index f2c08a8dc1..38b74b8f9f 100644 --- a/em-format/em-stripsig-filter.c +++ b/em-format/em-stripsig-filter.c @@ -74,8 +74,10 @@ strip_signature (CamelMimeFilter *filter, } } - if (start != NULL) + if (start != NULL) { inptr = start; + stripsig->midline = FALSE; + } if (!flush && inend > inptr) camel_mime_filter_backup (filter, inptr, inend - inptr); |