diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-10-19 01:51:10 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-10-19 01:51:10 +0800 |
commit | dbff16f5448cb054770b366f3ce73c6cf8357ec5 (patch) | |
tree | aa2a09380b9b8c9029988cd580d88a0b7ae1c26c | |
parent | e88e358052d962c4444d36d26378f4a67cdfd5c4 (diff) | |
download | gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar.gz gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar.bz2 gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar.lz gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar.xz gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.tar.zst gsoc2013-evolution-dbff16f5448cb054770b366f3ce73c6cf8357ec5.zip |
s/+ 4/+ 1/
we want to strip the "-- " too
svn path=/trunk/; revision=18394
-rw-r--r-- | mail/mail-tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-tools.c b/mail/mail-tools.c index 6a210c2204..4801ac6969 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -367,7 +367,7 @@ mail_tool_quote_message (CamelMimeMessage *message, const char *fmt, ...) /* look for the signature and strip it off */ sig = text; while ((p = strstr (sig, "\n-- \n"))) - sig = p + 4; + sig = p + 1; if (sig != text) *sig = '\0'; |