aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r--plugins/exchange-operations/ChangeLog5
-rw-r--r--plugins/exchange-operations/exchange-folder.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog
index 9f4513eb46..e41100484f 100644
--- a/plugins/exchange-operations/ChangeLog
+++ b/plugins/exchange-operations/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-14 Matthew Barnes <mbarnes@redhat.com>
+
+ * exchange-folder.c (ex_create_folder_info):
+ Call camel_folder_info_new() instead of g_new0().
+
2007-10-26 Kjartan Maraas <kmaraas@gnome.org>
* exchange-account-setup.c: (org_gnome_exchange_settings),
diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c
index db2dc0e475..879e4ded28 100644
--- a/plugins/exchange-operations/exchange-folder.c
+++ b/plugins/exchange-operations/exchange-folder.c
@@ -159,7 +159,7 @@ ex_create_folder_info (CamelStore *store, char *name, char *uri,
if (!path)
return NULL;
- info = g_new0 (CamelFolderInfo, 1);
+ info = camel_folder_info_new ();
info->name = name;
info->uri = uri;
info->full_name = g_strdup (path + 1);