Blame SOURCES/0023-fix-loading-of-the-user-list-of-ignored-words.patch

562801
From f689bf3b1dd26fa14bd96a2a5f0b8a6665d7ab19 Mon Sep 17 00:00:00 2001
562801
From: Jakub Filak <jfilak@redhat.com>
562801
Date: Thu, 30 Jan 2014 12:49:42 +0100
562801
Subject: [LIBREPORT PATCH 23/24] fix loading of the user list of ignored words
562801
562801
Closes #1063339
562801
562801
Signed-off-by: Jakub Filak <jfilak@redhat.com>
562801
---
562801
 src/lib/user_settings.c | 18 ++++++++++++++----
562801
 1 file changed, 14 insertions(+), 4 deletions(-)
562801
562801
diff --git a/src/lib/user_settings.c b/src/lib/user_settings.c
562801
index e42ebe0..4cd87ff 100644
562801
--- a/src/lib/user_settings.c
562801
+++ b/src/lib/user_settings.c
562801
@@ -18,19 +18,30 @@
562801
 #include "internal_libreport.h"
562801
 #include <augeas.h>
562801
 
562801
+#define BASE_DIR_FOR_USER_CONFIG_FILE "abrt/settings/"
562801
+
562801
 static map_string_t *user_settings;
562801
 static char *conf_path;
562801
 
562801
-static char *get_conf_path(const char *name)
562801
+static char *get_user_config_file_path(const char *name, const char *suffix)
562801
 {
562801
     char *s, *conf;
562801
 
562801
-    s = xasprintf("abrt/settings/%s.conf", name);
562801
+    if (suffix != NULL)
562801
+        s = xasprintf(BASE_DIR_FOR_USER_CONFIG_FILE"%s.%s", name, suffix);
562801
+    else
562801
+        s = xasprintf(BASE_DIR_FOR_USER_CONFIG_FILE"%s", name);
562801
+
562801
     conf = concat_path_file(g_get_user_config_dir(), s);
562801
     free(s);
562801
     return conf;
562801
 }
562801
 
562801
+static char *get_conf_path(const char *name)
562801
+{
562801
+    return get_user_config_file_path(name, "conf");
562801
+}
562801
+
562801
 bool save_app_conf_file(const char* application_name, map_string_t *settings)
562801
 {
562801
     char *app_conf_path = get_conf_path(application_name);
562801
@@ -103,8 +114,7 @@ GList *load_words_from_file(const char* filename)
562801
     GList *words_list = NULL;
562801
     GList *file_list = NULL;
562801
     file_list = g_list_prepend(file_list, concat_path_file(CONF_DIR, filename));
562801
-    // get_conf_path adds .conf suffix, so we need to either change it or use it like this:
562801
-    file_list = g_list_prepend(file_list, get_conf_path("forbidden_words"));
562801
+    file_list = g_list_prepend(file_list, get_user_config_file_path(filename, /*don't append suffix*/NULL));
562801
     GList *file_list_cur = file_list;
562801
 
562801
     while(file_list_cur)
562801
-- 
562801
1.8.3.1
562801