diff options
author | Milan Crha <mcrha@redhat.com> | 2011-03-10 00:08:05 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-03-10 00:08:05 +0800 |
commit | 46a52a54c4c7b3559f135a40d3bd77e644ce73ad (patch) | |
tree | a6b7a957997f15909ca783e77bc51fe0cacf2024 /em-format | |
parent | 3dbad4ffb4f2477c1ec2f101d2687bbf3c46e795 (diff) | |
download | gsoc2013-evolution-46a52a54c4c7b3559f135a40d3bd77e644ce73ad.tar.gz gsoc2013-evolution-46a52a54c4c7b3559f135a40d3bd77e644ce73ad.tar.zst gsoc2013-evolution-46a52a54c4c7b3559f135a40d3bd77e644ce73ad.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); |