diff options
| author | Peter Jones <pjones@redhat.com> | 2008-06-16 17:33:15 -0400 |
|---|---|---|
| committer | Peter Jones <pjones@pjones2.localdomain> | 2008-06-16 17:33:34 -0400 |
| commit | 0935335237ca0f15499966ba0b9bc0dff08e6edc (patch) | |
| tree | 431070e66fcf247ba249c59bced098357432ac4e /src | |
| parent | 34862aa8d3711c207f62b125fd37ceb5597451d9 (diff) | |
| download | plymouth-0935335237ca0f15499966ba0b9bc0dff08e6edc.tar.gz plymouth-0935335237ca0f15499966ba0b9bc0dff08e6edc.tar.xz plymouth-0935335237ca0f15499966ba0b9bc0dff08e6edc.zip | |
Fix missing struct initializer on ->newroot, so boot.log will actually work.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ply-boot-server.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ply-boot-server.c b/src/ply-boot-server.c index 1796b3b..64ecf6c 100644 --- a/src/ply-boot-server.c +++ b/src/ply-boot-server.c @@ -77,6 +77,7 @@ ply_boot_server_new (ply_boot_server_update_handler_t update_handler, server->is_listening = false; server->update_handler = update_handler; server->ask_for_password_handler = ask_for_password_handler; + server->newroot_handler = newroot_handler; server->system_initialized_handler = initialized_handler; server->show_splash_handler = show_splash_handler; server->quit_handler = quit_handler; |
