svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread markt
Author: markt Date: Thu Feb 23 18:44:02 2012 New Revision: 1292891 URL: http://svn.apache.org/viewvc?rev=1292891view=rev Log: Fix BZ52750. Correctly parse command options Port of r1292878 from 7.0.x Modified: tomcat/trunk/bin/daemon.sh (contents, props changed) Modified:

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread Konstantin Kolinko
2012/2/23 ma...@apache.org: Author: markt Date: Thu Feb 23 18:44:02 2012 New Revision: 1292891 URL: http://svn.apache.org/viewvc?rev=1292891view=rev Log: Fix BZ52750. Correctly parse command options Port of r1292878 from 7.0.x Modified:    tomcat/trunk/bin/daemon.sh   (contents, props

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread sebb
On 23 February 2012 19:00, Konstantin Kolinko knst.koli...@gmail.com wrote: 2012/2/23  ma...@apache.org: Author: markt Date: Thu Feb 23 18:44:02 2012 New Revision: 1292891 URL: http://svn.apache.org/viewvc?rev=1292891view=rev Log: Fix BZ52750. Correctly parse command options Port of

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread Konstantin Kolinko
2012/2/23 sebb seb...@gmail.com: On 23 February 2012 19:00, Konstantin Kolinko knst.koli...@gmail.com wrote: 2012/2/23  ma...@apache.org: Author: markt Date: Thu Feb 23 18:44:02 2012 New Revision: 1292891 URL: http://svn.apache.org/viewvc?rev=1292891view=rev Log: Fix BZ52750. Correctly

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread Mladen Turk
On 02/23/2012 08:00 PM, Konstantin Kolinko wrote: 2012/2/23ma...@apache.org: Maybe: while [ -n $1 ] (though both variants should work work) Some solaris shells misbehave on -n. do - case $o in + case $o=1 in What the above line is about? Was it supposed to be: case $1 in

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread Mark Thomas
On 23/02/2012 19:07, sebb wrote: On 23 February 2012 19:00, Konstantin Kolinko knst.koli...@gmail.com wrote: 2012/2/23 ma...@apache.org: - case $o in + case $o=1 in What the above line is about? I wondered the same myself; it so happens that the = key is next to the Backspace key, so

Re: svn commit: r1292891 - /tomcat/trunk/bin/daemon.sh

2012-02-23 Thread Mark Thomas
On 23/02/2012 19:33, Mladen Turk wrote: On 02/23/2012 08:00 PM, Konstantin Kolinko wrote: 2012/2/23ma...@apache.org: Maybe: while [ -n $1 ] (though both variants should work work) Some solaris shells misbehave on -n. do - case $o in + case $o=1 in What the above line is