diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-04 13:36:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-05-04 13:36:32 +0000 |
commit | f4e0472905ee029771cdd5349acea7048aaf32d4 (patch) | |
tree | cd117bddbe6dee8357b9af32f9d12c70405d9807 /x11/gdm | |
parent | Fix condition where strlen() is called on non null-terminated string. (diff) |
- Beautify console messages
PR: ports/80577
Submitted by: Stefan Thurner <stefan.thurner@mb.tu-chemnitz.de>
Diffstat (limited to 'x11/gdm')
-rw-r--r-- | x11/gdm/files/gdm.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/gdm/files/gdm.sh.in b/x11/gdm/files/gdm.sh.in index 0f20ad88497e..2fd88f7187ca 100644 --- a/x11/gdm/files/gdm.sh.in +++ b/x11/gdm/files/gdm.sh.in @@ -17,12 +17,12 @@ command="%%PREFIX%%/bin/${name}" pidfile="/var/run/${name}.pid" gdm_start() { - checkyesno gdm_enable && echo " Starting GDM " && \ + checkyesno gdm_enable && echo -n " Starting GDM" && \ ${command} } gdm_stop() { - checkyesno gdm_enable && echo " Stopping GDM. " && \ + checkyesno gdm_enable && echo -n " Stopping GDM" && \ /usr/bin/killall -m ${name} 2>/dev/null } |