From 745a10be4e380c9f5297073c779a0e8cbdd35c78 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Fri, 6 Oct 2000 16:36:41 +0000 Subject: Add missing parameter in call to `camel_store_get_folder_info()'. (Duh, I hope `FALSE' is fine.) svn path=/trunk/; revision=5763 --- mail/ChangeLog | 6 ++++++ mail/mail-ops.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 55e6dd1824..ed6cffa3fe 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-10-06 Ettore Perazzoli + + * mail-ops.c (do_scan_subfolders): Add missing @subscribed_only + parameter in the call to `camel_store_get_folder_info()'. [FALSE, + I hope that's right.] + 2000-10-05 Jeffrey Stedfast * mail-format.c (write_field_to_stream): Decode the header before diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 98c187d52a..98774969f2 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1235,7 +1235,7 @@ do_scan_subfolders (gpointer in_data, gpointer op_data, CamelException *ex) if (!store) return; - tree = camel_store_get_folder_info (store, NULL, TRUE, TRUE, ex); + tree = camel_store_get_folder_info (store, NULL, TRUE, TRUE, FALSE, ex); if (tree) { add_folders (data->new_folders, "", tree); camel_store_free_folder_info (store, tree); -- cgit