Commit a3bd178c a3bd178c52738af2b478a77a2a4bcc66b5548323 by Sergey Poznyakoff

Bugfix.

* mailbox/cfg_parser.y (mu_cfg_format_error): Raise
mu_cfg_error_count only if level is less or equal to error.
(_scan_tree_helper): "unknown section" is a warning.
1 parent 7896f27d
2008-11-12 Sergey Poznyakoff <gray@gnu.org.ua>
* mailbox/cfg_parser.y (mu_cfg_format_error): Raise
mu_cfg_error_count only if level is less or equal to error.
(_scan_tree_helper): "unknown section" is a warning.
* configure.ac, NEWS: Version 1.9.93.
* include/mailutils/libargp.h (mu_app_cfg_verifier): New extern.
* libargp/muinit.c (mu_app_cfg_verifier): New variable.
......
......@@ -99,18 +99,24 @@ mu_cfg_format_error (mu_debug_t debug, size_t level, const char *fmt, ...)
mu_debug_vprintf (debug, 0, fmt, ap);
mu_debug_printf (debug, 0, "\n");
va_end (ap);
if (level <= MU_DEBUG_ERROR)
mu_cfg_error_count++;
}
static void
_mu_cfg_debug_set_locus (mu_debug_t debug, const mu_cfg_locus_t *loc)
{
mu_debug_set_locus (debug, loc->file ? loc->file : _("unknown file"),
loc->line);
}
static void
_mu_cfg_vperror (mu_debug_t debug, const mu_cfg_locus_t *loc,
const char *fmt, va_list ap)
{
if (!debug)
mu_diag_get_debug (&debug);
mu_debug_set_locus (debug,
loc->file ? loc->file : _("unknown file"),
loc->line);
_mu_cfg_debug_set_locus (debug, loc);
mu_debug_vprintf (debug, 0, fmt, ap);
mu_debug_printf (debug, 0, "\n");
mu_debug_set_locus (debug, NULL, 0);
......@@ -1148,7 +1154,8 @@ _scan_tree_helper (const mu_cfg_node_t *node, void *data)
{
if (mu_cfg_parser_verbose)
{
_mu_cfg_perror (sdata->tree->debug, &node->locus,
_mu_cfg_debug_set_locus (sdata->tree->debug, &node->locus);
mu_cfg_format_error (sdata->tree->debug, MU_DIAG_WARNING,
_("unknown section `%s'"),
node->tag);
}
......