From: Richard Purdie Date: Thu, 27 Jun 2019 12:27:43 +0000 (+0100) Subject: busybox: Fix typo in syslog initscript X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~14043 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f674a88c781c7092d5b3460922a1579b9fe4bf9;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.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 49033c1755a..2208613e8c6 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