diff options
| author | Ray Strode <rstrode@redhat.com> | 2008-06-02 10:11:35 -0400 |
|---|---|---|
| committer | Ray Strode <rstrode@redhat.com> | 2008-06-02 10:11:35 -0400 |
| commit | b4842e3c748c4e1eb396e15547c927faa6ba40c6 (patch) | |
| tree | c518537530e4d98acab42636687d5f5cdc0e767b /src | |
| parent | 1c3a90801efcc6c919c76962f4246790450c1c62 (diff) | |
| download | plymouth-b4842e3c748c4e1eb396e15547c927faa6ba40c6.tar.gz plymouth-b4842e3c748c4e1eb396e15547c927faa6ba40c6.tar.xz plymouth-b4842e3c748c4e1eb396e15547c927faa6ba40c6.zip | |
Respond with password of "" if boot splash plugin isn't loaded
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -126,6 +126,12 @@ on_ask_for_password (state_t *state, { password_answer_closure_t *closure; + if (state->boot_splash != NULL) + { + answer_handler (answer_data, "", state->boot_server); + return; + } + closure = malloc (sizeof (password_answer_closure_t)); closure->handler = answer_handler; closure->data = answer_data; |
