Author: markt
Date: Tue Nov 3 23:31:58 2015
New Revision: 1712442
URL: http://svn.apache.org/viewvc?rev=1712442&view=rev
Log:
Whitespace fixes to align with 1.1.x to aid diffs
Modified:
tomcat/native/trunk/native/src/sslnetwork.c
Modified: tomcat/native/trunk/native/src/sslnetwork.c
URL:
http://svn.apache.org/viewvc/tomcat/native/trunk/native/src/sslnetwork.c?rev=1712442&r1=1712441&r2=1712442&view=diff
==============================================================================
--- tomcat/native/trunk/native/src/sslnetwork.c (original)
+++ tomcat/native/trunk/native/src/sslnetwork.c Tue Nov 3 23:31:58 2015
@@ -154,8 +154,6 @@ static tcn_ssl_conn_t *ssl_create(JNIEnv
SSL_set_verify_result(ssl, X509_V_OK);
SSL_rand_seed(ctx->rand_file);
- //SSL_set_session_ticket_ext_cb(ssl, ssl_ticket_cb, con);
-
#ifdef TCN_DO_STATISTICS
ssl_created++;
#endif
@@ -350,8 +348,8 @@ TCN_IMPLEMENT_CALL(jint, SSLSocket, hand
/* Fall through */
default:
/*
- * Anything else is a fatal error
- */
+ * Anything else is a fatal error
+ */
con->shutdown_type = SSL_SHUTDOWN_TYPE_UNCLEAN;
return SSL_TO_APR_ERROR(i);
break;
@@ -499,7 +497,7 @@ ssl_socket_send(apr_socket_t *sock, cons
if ((s = SSL_write(con->ssl, buf, wr)) <= 0) {
if (!con->ssl)
return APR_ENOTSOCK;
- rv = apr_get_netos_error();
+ rv = apr_get_netos_error();
i = SSL_get_error(con->ssl, s);
switch (i) {
case SSL_ERROR_WANT_READ:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]