From: Richard Purdie Date: Thu, 27 Jun 2019 12:27:43 +0000 (+0100) Subject: busybox: Fix typo in syslog initscript X-Git-Tag: uninative-2.7~931 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9f674a88c781c7092d5b3460922a1579b9fe4bf9;p=openembedded-core.git 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 --- 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