diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-27 02:17:23 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-27 02:17:23 +0800 |
commit | 849f3cac38b3a9502a357b3bbf4d416ea0a5f40b (patch) | |
tree | 29a666254a3926242a0e8a51bc13faa73520c309 /shell/e-local-storage.c | |
parent | 2d412847ea2ae50c38fb1c3ece8bd1b7b754d565 (diff) | |
download | gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.gz gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.tar.zst gsoc2013-evolution-849f3cac38b3a9502a357b3bbf4d416ea0a5f40b.zip |
(load_folder): Always return TRUE, even in the
unknown-type case.
svn path=/trunk/; revision=18236
Diffstat (limited to 'shell/e-local-storage.c')
-rw-r--r-- | shell/e-local-storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c index a90a37ecf9..c5a19876c4 100644 --- a/shell/e-local-storage.c +++ b/shell/e-local-storage.c @@ -204,7 +204,7 @@ load_folder (const char *physical_path, e_folder_get_type_string (folder))) { g_warning ("Folder in %s has unknown type (%s)... ignoring", physical_path, e_folder_get_type_string (folder)); - return FALSE; + return TRUE; } new_folder (local_storage, path, folder); |