From: Timo Sirainen Date: Wed, 19 Mar 2008 05:32:47 +0000 (+0200) Subject: "Invalid quota rule" didn't specify the error message X-Git-Tag: 1.1.rc4~25 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52f2e51b5a4db47f4b7a00d31aaf13c06f87ee0a;p=thirdparty%2Fdovecot%2Fcore.git "Invalid quota rule" didn't specify the error message --HG-- branch : HEAD --- diff --git a/src/plugins/quota/quota-plugin.c b/src/plugins/quota/quota-plugin.c index f62875ef17..da5c0112ac 100644 --- a/src/plugins/quota/quota-plugin.c +++ b/src/plugins/quota/quota-plugin.c @@ -31,8 +31,8 @@ static void quota_root_add_rules(const char *root_name, break; if (quota_root_add_rule(root, rule, &error) < 0) { - i_fatal("Quota root %s: Invalid rule: %s", - root_name, rule); + i_fatal("Quota root %s: Invalid rule %s: %s", + root_name, rule, error); } rule_name = t_strdup_printf("%s_RULE%d", root_name, i); }