diff options
-rw-r--r-- | importers/ChangeLog | 5 | ||||
-rw-r--r-- | importers/pine-importer.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/importers/ChangeLog b/importers/ChangeLog index 94de7833eb..986ad3fb98 100644 --- a/importers/ChangeLog +++ b/importers/ChangeLog @@ -1,5 +1,10 @@ 2001-08-21 Iain Holmes <iain@ximian.com> + * pine-importer.c (scan_dir): Don't add a directory to the list of files + to be imported. + +2001-08-21 Iain Holmes <iain@ximian.com> + * netscape-importer.c (netscape_import_accounts): Fully assign the id structure. diff --git a/importers/pine-importer.c b/importers/pine-importer.c index f7eba31822..e483b1a5d6 100644 --- a/importers/pine-importer.c +++ b/importers/pine-importer.c @@ -528,7 +528,7 @@ scan_dir (PineImporter *importer, pf->path = NULL; pf->parent = g_strdup (orig_parent); pf->foldername = g_strdup (foldername); - importer->dir_list = g_list_append (importer->dir_list, pf); +/* importer->dir_list = g_list_append (importer->dir_list, pf); */ subdir = g_concat_dir_and_file (orig_parent, foldername); scan_dir (importer, fullname, subdir); |