=== modified file 'dracut-module/password-agent.c' --- dracut-module/password-agent.c 2019-10-20 01:48:38 +0000 +++ dracut-module/password-agent.c 2020-02-01 22:02:09 +0000 @@ -8092,10 +8092,10 @@ g_option_context_set_help_enabled(context, FALSE); g_option_context_set_ignore_unknown_options(context, TRUE); - gboolean run_tests = FALSE; + gboolean should_run_tests = FALSE; GOptionEntry entries[] = { { "test", 0, 0, G_OPTION_ARG_NONE, - &run_tests, "Run tests", NULL }, + &should_run_tests, "Run tests", NULL }, { NULL } }; g_option_context_add_main_entries(context, entries, NULL); @@ -8108,5 +8108,5 @@ } g_option_context_free(context); - return run_tests != FALSE; + return should_run_tests != FALSE; }