From ccfecef9365fb0d5c62cf8c618527f098ef9205d Mon Sep 17 00:00:00 2001 From: Jaakko Luttinen Date: Sun, 19 Apr 2020 20:07:58 +0300 Subject: fix xetc to config_path (#1097) --- source/rofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3