From 4a9c021d28915c6416a7c7ba37b4f1da02094635 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 10 Jan 2014 17:47:52 -0500 Subject: [PATCH] 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 --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }