From: Ray Strode Date: Fri, 10 Jan 2014 22:47:52 +0000 (-0500) Subject: main: load /usr/share/plymouth/plymouthd.defaults not plymouthd.conf X-Git-Tag: 0.9.0~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a9c021d28915c6416a7c7ba37b4f1da02094635;p=thirdparty%2Fplymouth.git main: load /usr/share/plymouth/plymouthd.defaults not plymouthd.conf When i deduplicated code a few commits back, I made a cut-and-paste error and used the wrong file name for distro policy --- diff --git a/src/main.c b/src/main.c index 1a408162..bbd74f98 100644 --- a/src/main.c +++ b/src/main.c @@ -417,9 +417,9 @@ find_distribution_default_splash (state_t *state) if (state->distribution_default_splash_path != NULL) return; - if (!load_settings (state, PLYMOUTH_POLICY_DIR "plymouthd.conf", &state->distribution_default_splash_path)) + if (!load_settings (state, PLYMOUTH_POLICY_DIR "plymouthd.defaults", &state->distribution_default_splash_path)) { - ply_trace ("failed to load " PLYMOUTH_POLICY_DIR "plymouthd.conf"); + ply_trace ("failed to load " PLYMOUTH_POLICY_DIR "plymouthd.defaults"); return; }