Author: rjung Date: Sat May 23 12:55:18 2015 New Revision: 1681343 URL: http://svn.apache.org/r1681343 Log: Partial backport of r1144501 from trunk:
r1144501 | schultz | 2011-07-08 22:42:45 +0200 (Fri, 08 Jul 2011) | 4 lines Added required APR version number to "unsupported APR version" message. Fixed typos in comments and error messages. Modified: tomcat/native/branches/1.1.x/native/src/jnilib.c Modified: tomcat/native/branches/1.1.x/native/src/jnilib.c URL: http://svn.apache.org/viewvc/tomcat/native/branches/1.1.x/native/src/jnilib.c?rev=1681343&r1=1681342&r2=1681343&view=diff ============================================================================== --- tomcat/native/branches/1.1.x/native/src/jnilib.c (original) +++ tomcat/native/branches/1.1.x/native/src/jnilib.c Sat May 23 12:55:18 2015 @@ -59,7 +59,7 @@ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM apr_version(&apv); apvn = apv.major * 1000 + apv.minor * 100 + apv.patch; if (apvn < 1201) { - tcn_Throw(env, "Unupported APR version (%s)", + tcn_Throw(env, "Unsupported APR version (%s): this tcnative requires at least 1.2.1", apr_version_string()); return JNI_ERR; } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org