mturk 2005/06/01 05:10:15
Modified: jni/native/src sslcontext.c
Log:
Fix typo. Use OpenSSL real context for setting the options.
Revision Changes Path
1.11 +2 -2 jakarta-tomcat-connectors/jni/native/src/sslcontext.c
Index: sslcontext.c
===================================================================
RCS file: /home/cvs/jakarta-tomcat-connectors/jni/native/src/sslcontext.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sslcontext.c 1 Jun 2005 12:06:55 -0000 1.10
+++ sslcontext.c 1 Jun 2005 12:10:15 -0000 1.11
@@ -266,7 +266,7 @@
UNREFERENCED_STDARGS;
TCN_ASSERT(ctx != 0);
- SSL_CTX_set_options(c, opt);
+ SSL_CTX_set_options(c->ctx, opt);
}
#else
---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org
|