Blame SOURCES/0001-INI-Silence-ini_augment-match-failures.patch

dc95e0
From a12ebfad6b808a85a70bb245a64f56724fc7a4c4 Mon Sep 17 00:00:00 2001
dc95e0
From: =?UTF-8?q?Michal=20=C5=BDidek?= <mzidek@redhat.com>
dc95e0
Date: Mon, 30 Oct 2017 12:43:19 -0500
dc95e0
Subject: [PATCH] INI: Silence ini_augment match failures
dc95e0
MIME-Version: 1.0
dc95e0
Content-Type: text/plain; charset=UTF-8
dc95e0
Content-Transfer-Encoding: 8bit
dc95e0
dc95e0
Resolves:
dc95e0
https://pagure.io/SSSD/ding-libs/issue/3182
dc95e0
dc95e0
Reviewed-by: Michal Židek <mzidek@redhat.com>
dc95e0
Signed-off-by: Alexander Scheel <alexander.m.scheel@gmail.com>
dc95e0
Merges: https://pagure.io/SSSD/ding-libs/pull-request/3183
dc95e0
(cherry picked from commit be9ca3a2c26b061d1f22bd4a09009bba7a01f67b)
dc95e0
dc95e0
DOWNSTREAM:
dc95e0
Resolves: rhbz#1507607 - ding-libs: libini_config: `ini_config_augment` reports errors on match failure
dc95e0
---
dc95e0
 ini/ini.d/merge.validator | 11 -----------
dc95e0
 ini/ini_augment.c         | 13 +++++++------
dc95e0
 2 files changed, 7 insertions(+), 17 deletions(-)
dc95e0
dc95e0
diff --git a/ini/ini.d/merge.validator b/ini/ini.d/merge.validator
dc95e0
index 1defe8e78e598d903fa6b8c35a015076d5e5e43e..017c1cb8fb441fbe854d57ea9ea9f8476595d6bd 100644
dc95e0
--- a/ini/ini.d/merge.validator
dc95e0
+++ b/ini/ini.d/merge.validator
dc95e0
@@ -1,17 +1,8 @@
dc95e0
-File %s%s/merge.validator did not match provided patterns. Skipping.
dc95e0
-File %s%s/real8.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/new_line.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/real32be.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/real32le.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/real16be.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/real16le.conf did not match provided patterns. Skipping.
dc95e0
-File %s%s/foo.conf.in did not match provided patterns. Skipping.
dc95e0
 Errors detected while parsing: %s%s/comment.conf.
dc95e0
 Error (9) on line 22: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 24: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 26: Invalid space character at the beginning of the line.
dc95e0
 Error (15) on line 32: Incomplete comment at the end of the file.
dc95e0
-No sections found in file %s%s/comment.conf. Skipping.
dc95e0
 Section [section_a] found in file %s%s/first.conf is not allowed.
dc95e0
 Section [section_c] found in file %s%s/first.conf is not allowed.
dc95e0
 Section [section_b] found in file %s%s/first.conf is not allowed.
dc95e0
@@ -42,7 +33,6 @@ Error (9) on line 1: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 2: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 3: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 4: Invalid space character at the beginning of the line.
dc95e0
-No sections found in file %s%s/space.conf. Skipping.
dc95e0
 Section [info] found in file %s%s/symbols.conf is not allowed.
dc95e0
 Section [languages] found in file %s%s/symbols.conf is not allowed.
dc95e0
 Section [text] found in file %s%s/symbols.conf is not allowed.
dc95e0
@@ -55,6 +45,5 @@ Error (9) on line 15: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 16: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 26: Invalid space character at the beginning of the line.
dc95e0
 Error (9) on line 35: Invalid space character at the beginning of the line.
dc95e0
-No sections found in file %s%s/test.conf. Skipping.
dc95e0
 %s%s/ipa.conf
dc95e0
 %s%s/real.conf
dc95e0
diff --git a/ini/ini_augment.c b/ini/ini_augment.c
dc95e0
index af5c0b6959334d8072b4979ff568ffb1e2756d83..9d83ad9f09caa2d3d21fdeb7d93c57be27d43947 100644
dc95e0
--- a/ini/ini_augment.c
dc95e0
+++ b/ini/ini_augment.c
dc95e0
@@ -32,6 +32,8 @@
dc95e0
 #include <sys/types.h>
dc95e0
 #include <regex.h>
dc95e0
 #include <unistd.h>
dc95e0
+#define TRACE_LEVEL 7
dc95e0
+#define TRACE_HOME
dc95e0
 #include "trace.h"
dc95e0
 #include "collection.h"
dc95e0
 #include "collection_tools.h"
dc95e0
@@ -456,10 +458,9 @@ static int ini_aug_construct_list(char *dirname ,
dc95e0
             }
dc95e0
         }
dc95e0
         else {
dc95e0
-            ini_aug_add_string(ra_err,
dc95e0
-                               "File %s did not match provided patterns."
dc95e0
-                               " Skipping.",
dc95e0
-                               fullname);
dc95e0
+            TRACE_INFO_STRING("File did not match provided patterns."
dc95e0
+                              " Skipping:",
dc95e0
+                              fullname);
dc95e0
         }
dc95e0
     }
dc95e0
 
dc95e0
@@ -609,8 +610,8 @@ static int ini_aug_match_sec(struct ini_cfgobj *snip_cfg,
dc95e0
 
dc95e0
     /* Just in case check that we processed anything */
dc95e0
     if (section_count == 0) {
dc95e0
-        ini_aug_add_string(ra_err, "No sections found in file %s. Skipping.",
dc95e0
-                           snip_name);
dc95e0
+        TRACE_INFO_STRING("No sections found in file. Skipping:",
dc95e0
+                          snip_name);
dc95e0
         *skip = true;
dc95e0
         TRACE_FLOW_EXIT();
dc95e0
         return EOK;
dc95e0
-- 
dc95e0
2.9.5
dc95e0