summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-07-11 08:57:46 -0400
committerRay Strode <rstrode@redhat.com>2008-07-11 08:57:46 -0400
commit186fb1f6edddf8ac32b1b5096882b37e2d616c49 (patch)
tree9e0e139681ddbac59f03d17d1d97f2f81723e6d4 /src
parent78bb3d17cdc6e55d71c4b58b7c64db43cc6972d0 (diff)
downloadplymouth-186fb1f6edddf8ac32b1b5096882b37e2d616c49.tar.gz
plymouth-186fb1f6edddf8ac32b1b5096882b37e2d616c49.tar.xz
plymouth-186fb1f6edddf8ac32b1b5096882b37e2d616c49.zip
Show detailed plugin if ask-for-password is called when no splash visible
Diffstat (limited to 'src')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index f9a4e57..0325efb 100644
--- a/src/main.c
+++ b/src/main.c
@@ -134,7 +134,9 @@ on_ask_for_password (state_t *state,
{
if (state->boot_splash == NULL)
{
- ply_answer_with_string (answer, "");
+ show_detailed_splash (state);
+ if (state->boot_splash == NULL)
+ ply_answer_with_string (answer, "");
return;
}