From e2f2d38e94a8cb5d39a729eb57f52d8c955679b8 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 3 Jun 2008 23:42:17 -0400 Subject: [PATCH] invert conditional When adding the password object in commit f5a15611fb5fe1d36f8922e1c2a6f751ab0b8df7 I messed up and inverted a conditional. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 918663d0..c8952c3f 100644 --- a/src/main.c +++ b/src/main.c @@ -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;