invert conditional

When adding the password object in commit
f5a15611fb
I messed up and inverted a conditional.
This commit is contained in:
Ray Strode 2008-06-03 23:42:17 -04:00
parent fe6ba292f5
commit e2f2d38e94

View file

@ -99,7 +99,7 @@ static void
on_ask_for_password (state_t *state,
ply_answer_t *answer)
{
if (state->boot_splash != NULL)
if (state->boot_splash == NULL)
{
ply_answer_with_string (answer, "");
return;