You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2015/11/04 23:42:34 UTC

svn commit: r1712681 - /tomcat/native/trunk/native/src/sslcontext.c

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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org