From: Andrew Ruthven Date: Wed, 9 Apr 2008 02:29:15 +0000 (+1200) Subject: Remove a bogus space from the log messages. X-Git-Tag: debian-0.7.3-2~1 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd3ec0a6ab7fd2bbfcd3fc18eade3429df6942ed;p=mythtv-status.git Remove a bogus space from the log messages. --- diff --git a/debian/init.d b/debian/init.d index 50a1fe1..1c38c8c 100644 --- a/debian/init.d +++ b/debian/init.d @@ -56,7 +56,7 @@ set -e case "$1" in start|reload|refresh|restart|force-reload) - log_daemon_msg "Updating $DESC " "$NAME" + log_daemon_msg "Updating $DESC" "$NAME" [ ! -f /var/run/motd.orig ] && cp /var/run/motd /var/run/motd.orig cp /var/run/motd.orig /var/run/motd.new @@ -68,7 +68,7 @@ case "$1" in log_end_msg 0 ;; stop) - log_daemon_msg "Stopping $DESC " "$NAME" + log_daemon_msg "Stopping $DESC" "$NAME" [ -f /var/run/motd.orig ] && cp /var/run/motd.orig /var/run/motd log_end_msg 0 ;;