From: Peter Jones Date: Mon, 16 Jun 2008 21:33:15 +0000 (-0400) Subject: Fix missing struct initializer on ->newroot, so boot.log will actually work. X-Git-Tag: 0.4.0~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0935335237ca0f15499966ba0b9bc0dff08e6edc;p=thirdparty%2Fplymouth.git Fix missing struct initializer on ->newroot, so boot.log will actually work. --- diff --git a/src/ply-boot-server.c b/src/ply-boot-server.c index 1796b3b5..64ecf6c9 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;