summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2020-04-19 20:07:58 +0300
committerGitHub <noreply@github.com>2020-04-19 19:07:58 +0200
commitccfecef9365fb0d5c62cf8c618527f098ef9205d (patch)
treeba9bc2e7caa66df7baa4378527f2fe3f4c3ad505
parented55b6c634bd787cc9955eb250be43cc864c49ab (diff)
fix xetc to config_path (#1097)
-rw-r--r--source/rofi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rofi.c b/source/rofi.c
index 73c1ecd1..58c0c5c8 100644
--- a/source/rofi.c
+++ b/source/rofi.c
@@ -926,7 +926,7 @@ int main ( int argc, char *argv[] )
else {
g_free ( config_path_new );
config_path_new = NULL;
- if ( g_file_test ( xetc, G_FILE_TEST_IS_REGULAR ) ) {
+ if ( g_file_test ( config_path, G_FILE_TEST_IS_REGULAR ) ) {
config_parse_xresource_options_file ( config_path );
old_config_format = TRUE;
}