aboutsummaryrefslogtreecommitdiffstats
path: root/mail/folder-browser.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-06-29 03:52:36 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-06-29 03:52:36 +0800
commit1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a (patch)
tree80682be5e4234db8fa87ffaffea8577a087a3929 /mail/folder-browser.c
parentfcc55e12d5181ff964cad8e69427810eb07f7f3c (diff)
downloadgsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar.gz
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar.bz2
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar.lz
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar.xz
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.tar.zst
gsoc2013-evolution-1d9490ba9db40533d9c1206f2205c0d6bc1f8f5a.zip
Don't bother trying to save the passwd if the url is NULL.
2001-06-28 Jeffrey Stedfast <fejj@ximian.com> * mail-config.c (mail_config_write_on_exit): Don't bother trying to save the passwd if the url is NULL. * folder-browser.c (vfolder_mlist): Strip the mlist name to fix bug #3732. svn path=/trunk/; revision=10571
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r--mail/folder-browser.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c
index 546b260664..1b3de3c3e3 100644
--- a/mail/folder-browser.c
+++ b/mail/folder-browser.c
@@ -987,6 +987,7 @@ vfolder_mlist (GtkWidget *w, FolderBrowser *fb)
name = header_raw_check_mailing_list(&((CamelMimePart *)fb->mail_display->current_message)->headers);
if (name) {
+ g_strstrip (name);
vfolder_gui_add_from_mlist(fb->mail_display->current_message, name, fb->uri);
g_free(name);
}