From: kkolinko Date: Wed, 29 Sep 2010 08:18:52 +0000 (+0000) Subject: Correct a typo in message X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1907a38fdb9fa964442e13d0edc9cca9d5d87206;p=tomcat7.0 Correct a typo in message git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1002514 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/bin/catalina.sh b/bin/catalina.sh index 83ec31321..96b9eec07 100755 --- a/bin/catalina.sh +++ b/bin/catalina.sh @@ -431,7 +431,7 @@ elif [ "$1" = "stop" ] ; then if [ $? -gt 0 ]; then rm -f "$CATALINA_PID" >/dev/null 2>&1 if [ $? != 0 ]; then - echo "Tomact stopped but the PID file could not be removed." + echo "Tomcat stopped but the PID file could not be removed." fi break fi @@ -458,7 +458,7 @@ elif [ "$1" = "stop" ] ; then kill -9 $PID rm -f "$CATALINA_PID" >/dev/null 2>&1 if [ $? != 0 ]; then - echo "Tomact was killed but the PID file could not be removed." + echo "Tomcat was killed but the PID file could not be removed." fi fi fi