From a2683bffa4c506fcf2ec440f7b482191ed37fd27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Wed, 13 Feb 2019 16:29:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D1=82=D0=BA=D0=BB=D1=8E=D1=87=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=20=D1=81=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BE=20=D0=B7=D0=B0=D0=BF=D1=83=D1=81=D0=BA=D0=B0?= =?UTF-8?q?=D0=B5=D0=BC=D0=BE=D0=B9/=D0=BE=D1=81=D1=82=D0=B0=D0=BD=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B8=D0=B2=D0=B0=D0=B5=D0=BC=D0=BE=D0=B9=20=D1=81?= =?UTF-8?q?=D0=BB=D1=83=D0=B6=D0=B1=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plymouth.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plymouth.c b/plymouth.c index e9c925b..57a4b7f 100644 --- a/plymouth.c +++ b/plymouth.c @@ -85,7 +85,7 @@ int commandf(const char* cmd, ...) bool ply_message(const char* hook, const char* name) { - return (commandf("/bin/plymouth message --text=\"%s %s\"", hook, name) == 0); + return true; } @@ -145,7 +145,8 @@ bool ply_start(int mode) bool ply_update_status(int hook, const char* name) { - return (commandf("/bin/plymouth update --status=%d-%s", hook, name) == 0); + //return (commandf("/bin/plymouth update --status=%d-%s", hook, name) == 0); + return true; }