# HG changeset patch # User Timo Sirainen # Date 1255629060 14400 # Node ID 439e14ff146729bb78fd0be047084d108720dc27 # Parent a8254e6d5adaeaea2b0cc278709ceea61a7e2116 quota-fs: If mount=path isn't specified, don't fail with multiple quota roots. diff -r a8254e6d5ada -r 439e14ff1467 src/plugins/quota/quota-fs.c --- a/src/plugins/quota/quota-fs.c Thu Oct 15 13:20:44 2009 -0400 +++ b/src/plugins/quota/quota-fs.c Thu Oct 15 13:51:00 2009 -0400 @@ -712,6 +712,9 @@ const char *mailbox_path; bool is_file, match; + if (root->storage_mount_path == NULL) + return TRUE; + mailbox_path = mail_storage_get_mailbox_path(box->storage, box->name, &is_file); if (stat(mailbox_path, &mst) < 0) {