https://issues.apache.org/bugzilla/show_bug.cgi?id=55336
--- Comment #1 from Rainer Jung <[email protected]> --- Adding analysis reported by Ognjen Blagojevic on tomcat users here: On several places in catalina.sh, there is eval command which seems to be inproperly escaped. E.g, if I want to pass parameter with two consecutive spaces using eval, this is the wrong way to do it: eval echo \"foo bar\" (prints: foo bar) This is the right way to do it: eval echo "\"foo bar\"" (prints: foo bar) I believe that catalina.sh should quote every parameter pass to eval in order to prevent whitespace collapse. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
