aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-08-24 03:58:51 +0800
committerDan Winship <danw@src.gnome.org>2000-08-24 03:58:51 +0800
commit0131da3b090d4fe14d6116311930dbe7a606f31d (patch)
treeeab9e0b135673d04c8bb1d3e677b20bae1afdc2d /camel
parent7f51944599e2a69a92bb2eed477e46e853851ada (diff)
downloadgsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar.gz
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar.bz2
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar.lz
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar.xz
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.tar.zst
gsoc2013-evolution-0131da3b090d4fe14d6116311930dbe7a606f31d.zip
put commas between addresses.
* camel-mime-utils.c (header_address_list_format_append): put commas between addresses. svn path=/trunk/; revision=4985
Diffstat (limited to 'camel')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-mime-utils.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 4bfae9b009..b34b9b9d60 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-23 Dan Winship <danw@helixcode.com>
+
+ * camel-mime-utils.c (header_address_list_format_append): put
+ commas between addresses.
+
2000-08-22 Dan Winship <danw@helixcode.com>
* providers/imap/camel-imap-folder.c
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 3e85f4127f..68af633c44 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -2584,6 +2584,8 @@ header_address_list_format_append(GString *out, struct _header_address *a)
break;
}
a = a->next;
+ if (a)
+ g_string_append(out, ", ");
}
}