From: Joe Orton Date: Mon, 3 Dec 2012 16:58:21 +0000 (+0000) Subject: * modules/ssl/ssl_engine_io.c (ssl_io_filter_error): Use the correct X-Git-Tag: 2.5.0-alpha~6070 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcb6dc017834ae08bb1a5532ca75ee1d8dc03b44;p=thirdparty%2Fapache%2Fhttpd.git * modules/ssl/ssl_engine_io.c (ssl_io_filter_error): Use the correct response status in the 502 error bucket; fortuitously this error bucket is currently ignored so this bug was not user-visible. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1416589 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 571dd3a9684..058bf58ae50 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -869,7 +869,9 @@ static apr_status_t ssl_io_filter_error(ap_filter_t *f, break; case MODSSL_ERROR_BAD_GATEWAY: - bucket = ap_bucket_error_create(HTTP_BAD_REQUEST, NULL, + /* Send an error bucket, though the proxy currently has no + * special handling for error buckets and ignores this. */ + bucket = ap_bucket_error_create(HTTP_BAD_GATEWAY, NULL, f->c->pool, f->c->bucket_alloc); ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, f->c, APLOGNO(01997)