From 9f674a88c781c7092d5b3460922a1579b9fe4bf9 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 27 Jun 2019 13:27:43 +0100 Subject: busybox: Fix typo in syslog initscript The change to ensure the existing processes shut down had a clear copy and paste error. This really fixes syslog to avoid errors on restart. Signed-off-by: Richard Purdie --- meta/recipes-core/busybox/files/syslog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/busybox/files/syslog b/meta/recipes-core/busybox/files/syslog index 49033c1755..2208613e8c 100644 --- a/meta/recipes-core/busybox/files/syslog +++ b/meta/recipes-core/busybox/files/syslog @@ -82,7 +82,7 @@ case "$1" in ;; restart) pid1=`pidof syslogd` - pid2=`pidof syslogd` + pid2=`pidof klogd` $0 stop waitpid $pid1 waitpid $pid2 -- cgit 1.2.3-korg