diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-07 00:36:41 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-10-07 00:36:41 +0800 |
commit | 745a10be4e380c9f5297073c779a0e8cbdd35c78 (patch) | |
tree | 36bf54c1bdefe7c09a862f469fa7cf0d3e8c8fea | |
parent | 848c4f059d5f6a5a29863e958387b0140a9fa3c3 (diff) | |
download | gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar.gz gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar.bz2 gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar.lz gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar.xz gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.tar.zst gsoc2013-evolution-745a10be4e380c9f5297073c779a0e8cbdd35c78.zip |
Add missing parameter in call to `camel_store_get_folder_info()'.
(Duh, I hope `FALSE' is fine.)
svn path=/trunk/; revision=5763
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 7 insertions, 1 deletions
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 <ettore@helixcode.com> + + * 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 <fejj@helixcode.com> * 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); |