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

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