From 059caea47b692d0ca5ed2ddd32a42a1cf0cc9dc5 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 29 Oct 2010 16:37:03 +0200 Subject: Bug #632278 - Double .vcf extension on addressbook save --- addressbook/gui/widgets/eab-gui-util.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'addressbook/gui') diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index a40a3a3ff5..ebf4558f50 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -285,7 +285,7 @@ eab_select_source (ESource *except_source, const gchar *title, const gchar *mess gchar * eab_suggest_filename (GList *contact_list) { - gchar *current_name = NULL, *res; + gchar *res = NULL; g_return_val_if_fail (contact_list != NULL, NULL); @@ -297,15 +297,12 @@ eab_suggest_filename (GList *contact_list) if (string == NULL) string = e_contact_get (contact, E_CONTACT_FULL_NAME); if (string != NULL) - current_name = make_safe_filename (string); + res = make_safe_filename (string); g_free (string); } - if (current_name == NULL) - current_name = make_safe_filename (_("list")); - - res = g_strconcat (current_name, ".vcf", NULL); - g_free (current_name); + if (res == NULL) + res = make_safe_filename (_("list")); return res; } -- cgit v1.2.3