aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
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/camel-mime-utils.c
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/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c2
1 files changed, 2 insertions, 0 deletions
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, ", ");
}
}