summaryrefslogtreecommitdiff
path: root/www/apache2/files/patch-modules:ssl:ssl_engine_io.c
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-03-20 12:27:46 +0000
committerClement Laforet <clement@FreeBSD.org>2004-03-20 12:27:46 +0000
commit6b583c745ffe0ba5b9823aa02b70bad5cc6ac9e3 (patch)
treeb6764eb442666ef96e9a7a878d40d3d7ec0386e7 /www/apache2/files/patch-modules:ssl:ssl_engine_io.c
parentRemove old version's SIZE. (diff)
Update to 2.0.49
Full ChangeLogand announcement: http://www.apache.org/dist/httpd/Announcement2.html Port changes: - buildconf patches improvement - Fix typo [1] PR: 64297 [1] Submitted by: TSUMAI Yasuyuki <ral@ta-ko.jp> [1]
Notes
Notes: svn path=/head/; revision=104730
Diffstat (limited to 'www/apache2/files/patch-modules:ssl:ssl_engine_io.c')
-rw-r--r--www/apache2/files/patch-modules:ssl:ssl_engine_io.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/www/apache2/files/patch-modules:ssl:ssl_engine_io.c b/www/apache2/files/patch-modules:ssl:ssl_engine_io.c
deleted file mode 100644
index e359ec540ccb..000000000000
--- a/www/apache2/files/patch-modules:ssl:ssl_engine_io.c
+++ /dev/null
@@ -1,31 +0,0 @@
-===================================================================
-RCS file: /home/cvspublic/httpd-2.0/modules/ssl/ssl_engine_io.c,v
-retrieving revision 1.100.2.11
-retrieving revision 1.100.2.12
-diff -u -r1.100.2.11 -r1.100.2.12
---- modules/ssl/ssl_engine_io.c 2004/02/09 20:53:20 1.100.2.11
-+++ modules/ssl/ssl_engine_io.c 2004/03/07 22:03:16 1.100.2.12
-@@ -821,9 +821,11 @@
- sizeof(HTTP_ON_HTTPS_PORT) - 1, \
- alloc)
-
--static void ssl_io_filter_disable(ap_filter_t *f)
-+static void ssl_io_filter_disable(SSLConnRec *sslconn, ap_filter_t *f)
- {
- bio_filter_in_ctx_t *inctx = f->ctx;
-+ SSL_free(inctx->ssl);
-+ sslconn->ssl = NULL;
- inctx->ssl = NULL;
- inctx->filter_ctx->pssl = NULL;
- }
-@@ -845,7 +847,7 @@
- ssl_log_ssl_error(APLOG_MARK, APLOG_INFO, f->c->base_server);
-
- sslconn->non_ssl_request = 1;
-- ssl_io_filter_disable(f);
-+ ssl_io_filter_disable(sslconn, f);
-
- /* fake the request line */
- bucket = HTTP_ON_HTTPS_PORT_BUCKET(f->c->bucket_alloc);
-
-