From: Doug MacEachern Date: Wed, 28 Nov 2001 04:24:07 +0000 (+0000) Subject: remove setting of ap::{http::method,default::port} r->notes. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06d5018c5bd506f9adaabde1d6349efd1b060bf2;p=thirdparty%2Fapache%2Fhttpd.git remove setting of ap::{http::method,default::port} r->notes. these notes are unused, they handled by hooks. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@92210 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_kernel.c b/ssl_engine_kernel.c index 14d1cd6fe3b..c5a5dc8af49 100644 --- a/ssl_engine_kernel.c +++ b/ssl_engine_kernel.c @@ -185,14 +185,7 @@ int ssl_hook_ReadReq(request_rec *r) */ if (strEQn(r->uri, "/mod_ssl:", 9)) r->handler = "mod_ssl:content-handler"; - if (ssl != NULL) { - apr_table_setn(r->notes, "ap::http::method", "https"); - apr_table_setn(r->notes, "ap::default::port", "443"); - } - else { - apr_table_setn(r->notes, "ap::http::method", NULL); - apr_table_setn(r->notes, "ap::default::port", NULL); - } + return DECLINED; }