aboutsummaryrefslogtreecommitdiffstats
path: root/mail/importers/mail-importer.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-02-11 20:19:32 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-02-11 20:19:32 +0800
commitd9e81eafb3031c4ed5cb53ab99764f4decc6b8f6 (patch)
tree9f4473ed5aadb06e94bcd943674a22dda847736f /mail/importers/mail-importer.c
parent5754e74e0cc60f309151bdb24627465693ab8565 (diff)
downloadgsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar.gz
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar.bz2
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar.lz
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar.xz
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.tar.zst
gsoc2013-evolution-d9e81eafb3031c4ed5cb53ab99764f4decc6b8f6.zip
call the right recursive function, oops.
2004-02-11 Not Zed <NotZed@Ximian.com> * importers/mail-importer.c (mail_importer_import_folders_sync): call the right recursive function, oops. * importers/mail-importer.h: don't include camel-operation.h, but fix up the forward decl usage. svn path=/trunk/; revision=24703
Diffstat (limited to 'mail/importers/mail-importer.c')
-rw-r--r--mail/importers/mail-importer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/importers/mail-importer.c b/mail/importers/mail-importer.c
index 1aab7ac2c8..0cfeb3b56a 100644
--- a/mail/importers/mail-importer.c
+++ b/mail/importers/mail-importer.c
@@ -379,7 +379,7 @@ mail_importer_import_folders_sync(const char *filepath, const char *folderparent
if (S_ISDIR(st.st_mode)) {
foldersub = folderparent?g_strdup_printf("%s/%s", folderparent, folder):g_strdup(folder);
- import_folders(filefull, foldersub, special_folders, cancel);
+ mail_importer_import_folders_sync(filefull, foldersub, special_folders, cancel);
g_free(foldersub);
}