mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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. (From OE-Core rev: 9f674a88c781c7092d5b3460922a1579b9fe4bf9) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -82,7 +82,7 @@ case "$1" in
|
|||||||
;;
|
;;
|
||||||
restart)
|
restart)
|
||||||
pid1=`pidof syslogd`
|
pid1=`pidof syslogd`
|
||||||
pid2=`pidof syslogd`
|
pid2=`pidof klogd`
|
||||||
$0 stop
|
$0 stop
|
||||||
waitpid $pid1
|
waitpid $pid1
|
||||||
waitpid $pid2
|
waitpid $pid2
|
||||||
|
|||||||
Reference in New Issue
Block a user