diff options
author | Bill Nottingham <notting@redhat.com> | 2005-09-29 19:12:49 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-09-29 19:12:49 +0000 |
commit | ecb3d5a7127f270866b1a4758ffaa1cd70c9239c (patch) | |
tree | 6d6b7364849aa4e3b18bf19098ff68c3be1f2882 /rc.d/init.d/functions | |
parent | e0298bb2a41535ee85601baf2d4bc939f1e17a6a (diff) | |
download | initscripts-ecb3d5a7127f270866b1a4758ffaa1cd70c9239c.tar initscripts-ecb3d5a7127f270866b1a4758ffaa1cd70c9239c.tar.gz initscripts-ecb3d5a7127f270866b1a4758ffaa1cd70c9239c.tar.bz2 initscripts-ecb3d5a7127f270866b1a4758ffaa1cd70c9239c.tar.xz initscripts-ecb3d5a7127f270866b1a4758ffaa1cd70c9239c.zip |
change translated string (#54682)
Diffstat (limited to 'rc.d/init.d/functions')
-rwxr-xr-x | rc.d/init.d/functions | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions index d6efca3c..660b4912 100755 --- a/rc.d/init.d/functions +++ b/rc.d/init.d/functions @@ -313,11 +313,11 @@ status() { echo_success() { [ "$BOOTUP" = "color" ] && $MOVE_TO_COL - echo -n "[ " + echo -n "[" [ "$BOOTUP" = "color" ] && $SETCOLOR_SUCCESS - echo -n $"OK" + echo -n $" OK " [ "$BOOTUP" = "color" ] && $SETCOLOR_NORMAL - echo -n " ]" + echo -n "]" echo -ne "\r" return 0 } |