×
Close
The permissions on this repository are being updated. This may take a while.
During this time, you or some of the project's contributors may not be able
to push to this repository.
Blame SOURCES/0011-applet-don-t-notify-missing-ignored_problems-file.patch
Branch: 7853e13bbde759b0d5bac91d8b12748a8893181c
baab13
From 85913f428fc4195dc26e1789c44985be718b2c7a Mon Sep 17 00:00:00 2001
baab13
From: Jakub Filak <jfilak@redhat.com>
baab13
Date: Thu, 16 Jan 2014 10:54:27 +0100
baab13
Subject: [ABRT PATCH 11/12] applet: don't notify missing ignored_problems file
baab13
baab13
Closes rhbz#1054291
baab13
baab13
Signed-off-by: Jakub Filak <jfilak@redhat.com>
baab13
---
baab13
src/lib/ignored_problems.c | 3 ++-
baab13
1 file changed, 2 insertions(+), 1 deletion(-)
baab13
baab13
diff --git a/src/lib/ignored_problems.c b/src/lib/ignored_problems.c
baab13
index 7ea84b4..df138d8 100644
baab13
--- a/src/lib/ignored_problems.c
baab13
+++ b/src/lib/ignored_problems.c
baab13
@@ -97,7 +97,8 @@ static bool ignored_problems_file_contains(ignored_problems_t *set,
baab13
FILE *fp = fopen(set->ign_set_file_path, mode);
baab13
if (!fp)
baab13
{
baab13
- pwarn_msg("Can't open ignored problems '%s' in mode '%s'", set->ign_set_file_path, mode);
baab13
+ if (errno != ENOENT)
baab13
+ pwarn_msg("Can't open ignored problems '%s' in mode '%s'", set->ign_set_file_path, mode);
baab13
goto ret_contains_end;
baab13
}
baab13
baab13
--
baab13
1.8.3.1
baab13