summaryrefslogtreecommitdiff
path: root/modules/benchmark.c
diff options
context:
space:
mode:
authorTotalCaesar659 <x24cm5b8c54q6szxw@yandex.ru>2018-05-28 01:11:16 +0300
committerLeandro A. F. Pereira <leandro@hardinfo.org>2018-05-27 15:11:16 -0700
commit06b0d18501c7e25c8d22fa53a9cd5f381334fc44 (patch)
treedf619dbd02f7ac2c81c4842adbc71663ce0652de /modules/benchmark.c
parentf7aa47059ad769040f699921a9802bd8dc80f00b (diff)
Moving configuration files to user's configuration folder
Build the configuration file path using g_get_user_config_dir() instead of g_get_home_dir().
Diffstat (limited to 'modules/benchmark.c')
-rw-r--r--modules/benchmark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/benchmark.c b/modules/benchmark.c
index 5f1dc0a5..0f5e7ea6 100644
--- a/modules/benchmark.c
+++ b/modules/benchmark.c
@@ -349,7 +349,7 @@ static gchar *__benchmark_include_results(bench_value r,
conf = g_key_file_new();
- path = g_build_filename(g_get_home_dir(), ".hardinfo", "benchmark.conf", NULL);
+ path = g_build_filename(g_get_user_config_dir(), "hardinfo", "benchmark.conf", NULL);
if (!g_file_test(path, G_FILE_TEST_EXISTS)) {
DEBUG("local benchmark.conf not found, trying system-wide");
g_free(path);