From ff3405f4c81bee8513622e1a57e6a67be919f74c Mon Sep 17 00:00:00 2001 From: Joshua Sled Date: Sat, 10 Feb 2007 18:52:39 +0000 Subject: [PATCH] Fix parsing of log config file without [output] sections. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15553 57a11ea4-9604-0410-9ed3-97b8803252fd --- lib/libqof/qof/qoflog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libqof/qof/qoflog.c b/lib/libqof/qof/qoflog.c index 8b5b242b69..b3b52eac87 100644 --- a/lib/libqof/qof/qoflog.c +++ b/lib/libqof/qof/qoflog.c @@ -283,7 +283,7 @@ qof_log_parse_log_config(const char *filename) g_strfreev(levels); } - if (g_key_file_has_group(conf, levels_group)) + if (g_key_file_has_group(conf, output_group)) { gsize num_outputs; int output_idx;