[evolution-mapi/gnome-3-0] Do not escape forward slashes in full folder name



commit 38ebb94a6ca9ca913fa9f2cc9b54cf9b3a866172
Author: Milan Crha <mcrha redhat com>
Date:   Fri Apr 22 18:39:10 2011 +0200

    Do not escape forward slashes in full folder name

 src/camel/camel-mapi-store.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/camel/camel-mapi-store.c b/src/camel/camel-mapi-store.c
index e590a08..260390a 100644
--- a/src/camel/camel-mapi-store.c
+++ b/src/camel/camel-mapi-store.c
@@ -478,7 +478,8 @@ mapi_folders_sync (CamelMapiStore *store, guint32 flags, GError **error)
 				full_name = tmp;
 			}
 		} else {
-			tmp = escape_slash (full_name);
+			/* known full_name - everything is escaped already */
+			tmp = g_strdup (full_name);
 			full_name = tmp;
 		}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]