summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--parser/parse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser/parse.c b/parser/parse.c
index 63d53ce7..52ab920b 100644
--- a/parser/parse.c
+++ b/parser/parse.c
@@ -394,13 +394,13 @@ void parse_paths_startup()
xdg_config_dir_paths = split_paths(path);
else {
xdg_config_dir_paths = slist_path_add(xdg_config_dir_paths,
+ g_strdup(CONFIGDIR),
+ (GSListFunc) g_slist_append);
+ xdg_config_dir_paths = slist_path_add(xdg_config_dir_paths,
g_build_filename
(G_DIR_SEPARATOR_S,
"etc", "xdg", NULL),
(GSListFunc) g_slist_append);
- xdg_config_dir_paths = slist_path_add(xdg_config_dir_paths,
- g_strdup(CONFIGDIR),
- (GSListFunc) g_slist_append);
}
xdg_config_dir_paths = slist_path_add(xdg_config_dir_paths,
g_strdup(xdg_config_home_path),