Author: kkolinko Date: Wed Nov 4 22:42:34 2015 New Revision: 1712681 URL: http://svn.apache.org/viewvc?rev=1712681&view=rev Log: Fix declaration of stub method used when compiling without OpenSSL support.
Noted when searching for "SSLExt". It would be better to actually try compiling - there may be other discrepancies like this. I cannot actually claim that the compilation issue has been fixed. Modified: tomcat/native/trunk/native/src/sslcontext.c Modified: tomcat/native/trunk/native/src/sslcontext.c URL: http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/sslcontext.c?rev=1712681&r1=1712680&r2=1712681&view=diff ============================================================================== --- tomcat/native/trunk/native/src/sslcontext.c (original) +++ tomcat/native/trunk/native/src/sslcontext.c Wed Nov 4 22:42:34 2015 @@ -1749,8 +1749,8 @@ TCN_IMPLEMENT_CALL(jboolean, SSLContext, return JNI_FALSE; } -TCN_IMPLEMENT_CALL(jint, SSLExt, setALPN)(TCN_STDARGS, jlong ctx, - jbyteArray buf, jint len) +TCN_IMPLEMENT_CALL(jint, SSLContext, setALPN)(TCN_STDARGS, jlong ctx, + jbyteArray buf, jint len) { UNREFERENCED_STDARGS; UNREFERENCED(ctx); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org