aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-mime-message.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index ec58af3dcd..a7aa391b8d 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-08 Dan Winship <danw@helixcode.com>
+
+ * camel-mime-message.c (process_header): Add another subject
+ g_strstrip that fejj's earlier commit missed.
+
2000-08-07 Not Zed <NotZed@HelixCode.com>
* providers/mh/camel-mh-folder.c (mh_append_message): Only retry
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: