Bug #2185 mysql.server script echo bug
Submitted: 22 Dec 2003 7:35 Modified: 3 Feb 2004 11:37
Reporter: xuefer tinys Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server Severity:S3 (Non-critical)
Version:4.0.17 OS:Linux (linux)
Assigned to: Ramil Kalimullin CPU Architecture:Any

[22 Dec 2003 7:35] xuefer tinys
Description:
mysql.server
line 182:
[ -z "$flags" ] && echo "Wait for mysqld to exit\c" || echo ".\c"

How to repeat:
mysql.server stop

got:
Wait for mysqld to exit\c
.\c
.\c
.\c

Suggested fix:
should be:
[ -z "$flags" ] && echo -n "Wait for mysqld to exit" || echo -n "."
or:
[ -z "$flags" ] && echo -e "Wait for mysqld to exit\c" || echo -e ".\c"
[3 Feb 2004 11:37] Ramil Kalimullin
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.

If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information 
about accessing the source trees is available at
    http://www.mysql.com/doc/en/Installing_source_tree.html