From: H Hartley Sweeten Date: Wed, 13 Jul 2011 00:45:22 +0000 (-0700) Subject: Fix colon location in S01logging script X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=72eb844be64567dadd7d619aa049fafbfa347736;p=buildroot.git Fix colon location in S01logging script The S01logging script currently displays the start/stop messages like this: Start logging :OK The normal form for these messages is: Start logging: OK Signed-off-by: H Hartley Sweeten Signed-off-by: Peter Korsgaard --- diff --git a/package/busybox/S01logging b/package/busybox/S01logging index 6badebe1ab..581f192daa 100644 --- a/package/busybox/S01logging +++ b/package/busybox/S01logging @@ -5,13 +5,13 @@ case "$1" in start) - echo -n "Starting logging :" + echo -n "Starting logging: " start-stop-daemon -S -q -p /var/run/syslog.pid --exec /sbin/syslogd -- -m 0 start-stop-daemon -S -q -p /var/run/klogd.pid --exec /sbin/klogd echo "OK" ;; stop) - echo -n "Stopping logging :" + echo -n "Stopping logging: " start-stop-daemon -K -q -p /var/run/syslog.pid start-stop-daemon -K -q -p /var/run/klogd.pid echo "OK"