summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParthasarathi Susarla <sparthasarathi@novell.com>2005-12-14 15:32:12 +0000
committerParthasarathi Susarla <saps@src.gnome.org>2005-12-14 15:32:12 +0000
commitb7f75cb687cbf89afeae937f33f2ec18a7987357 (patch)
treeed08a980250f695df35fcf6df657ea471b0a441a
parentdb3de2fa35a26a72de30aafab684c0e9c3bbaec8 (diff)
downloadevolution-data-server-b7f75cb687cbf89afeae937f33f2ec18a7987357.tar.gz
** See bug 317794 Do not convert folder names here, there are already
2005-12-14 Parthasarathi Susarla <sparthasarathi@novell.com> ** See bug 317794 * camel-groupwise-store-summary.c: (camel_groupwise_store_summary_full_to_path): (camel_groupwise_store_summary_path_to_full): Do not convert folder names here, there are already converted
-rw-r--r--camel/providers/groupwise/ChangeLog9
-rw-r--r--camel/providers/groupwise/camel-groupwise-store-summary.c4
2 files changed, 11 insertions, 2 deletions
diff --git a/camel/providers/groupwise/ChangeLog b/camel/providers/groupwise/ChangeLog
index 5c5261ece..632bcffd8 100644
--- a/camel/providers/groupwise/ChangeLog
+++ b/camel/providers/groupwise/ChangeLog
@@ -1,3 +1,12 @@
+2005-12-14 Parthasarathi Susarla <sparthasarathi@novell.com>
+
+ ** See bug 317794
+ * camel-groupwise-store-summary.c:
+ (camel_groupwise_store_summary_full_to_path):
+ (camel_groupwise_store_summary_path_to_full):
+ Do not convert folder names here, there are already converted
+
+
2005-11-07 Parthasarathi Susarla <sparthasarathi@novell.com>
** See bug #320736
diff --git a/camel/providers/groupwise/camel-groupwise-store-summary.c b/camel/providers/groupwise/camel-groupwise-store-summary.c
index 73bfbf41d..123412ae2 100644
--- a/camel/providers/groupwise/camel-groupwise-store-summary.c
+++ b/camel/providers/groupwise/camel-groupwise-store-summary.c
@@ -170,7 +170,7 @@ camel_groupwise_store_summary_full_to_path(CamelGroupwiseStoreSummary *s, const
} else
path = (char *)full_name;
- return camel_utf7_utf8(path);
+ return g_strdup (path);
}
static guint32 hexnib(guint32 c)
{
@@ -295,7 +295,7 @@ camel_groupwise_store_summary_path_to_full(CamelGroupwiseStoreSummary *s, const
camel_utf8_putc(&f, c);
/* merge old path part if required */
- f = camel_utf8_utf7(full);
+ f = g_strdup (full);
if (si) {
full = g_strdup_printf("%s%s", camel_groupwise_store_info_full_name(s, si), f);
g_free(f);