]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
main: load /usr/share/plymouth/plymouthd.defaults not plymouthd.conf
authorRay Strode <rstrode@redhat.com>
Fri, 10 Jan 2014 22:47:52 +0000 (17:47 -0500)
committerRay Strode <rstrode@redhat.com>
Fri, 10 Jan 2014 22:47:52 +0000 (17:47 -0500)
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

index 1a408162ff9d0159fb4f035dd9aaf8f6981d2b52..bbd74f98cfe9d64415b991f8ebe751b3bc888bd3 100644 (file)
@@ -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;
     }