aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-message.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-08-09 00:28:43 +0800
committerDan Winship <danw@src.gnome.org>2000-08-09 00:28:43 +0800
commit9951ed24213c19c1178e0f2a26a5eb1e4bb961ba (patch)
treeb6e6e6c849a76e723e068d316f40eec982ad94a1 /camel/camel-mime-message.c
parent1c2ad0f89d8725921c66faded89a4c860745af1d (diff)
downloadgsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar.gz
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar.bz2
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar.lz
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar.xz
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.tar.zst
gsoc2013-evolution-9951ed24213c19c1178e0f2a26a5eb1e4bb961ba.zip
Add another subject g_strstrip that fejj's earlier commit missed.
* camel-mime-message.c (process_header): Add another subject g_strstrip that fejj's earlier commit missed. svn path=/trunk/; revision=4596
Diffstat (limited to 'camel/camel-mime-message.c')
-rw-r--r--camel/camel-mime-message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-message.c b/camel/camel-mime-message.c
index ca77917047..d7a8775b43 100644
--- a/camel/camel-mime-message.c
+++ b/camel/camel-mime-message.c
@@ -487,7 +487,7 @@ process_header(CamelMedium *medium, const char *header_name, const char *header_
break;
case HEADER_SUBJECT:
g_free(message->subject);
- message->subject = header_decode_string(header_value);
+ message->subject = g_strstrip (header_decode_string(header_value));
break;
case HEADER_TO:
case HEADER_CC: