From: Christophe Jaillet Date: Mon, 18 Dec 2017 21:00:17 +0000 (+0000) Subject: Fix some style X-Git-Tag: 2.5.0-alpha2-ci-test-only~3051 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05181a29e73f976201964bc5476f8091d27300e8;p=thirdparty%2Fapache%2Fhttpd.git Fix some style git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1818624 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index ffa70c366ec..c5cdb54bf78 100644 --- a/modules/filters/mod_proxy_html.c +++ b/modules/filters/mod_proxy_html.c @@ -919,15 +919,15 @@ static apr_status_t proxy_html_filter(ap_filter_t *f, apr_bucket_brigade *bb) * And the HTML parser needs at least four bytes to initialise correctly. */ if ((bytes < 4) && APR_BUCKET_IS_EOS(APR_BUCKET_NEXT(b))) { - ap_remove_output_filter(f) ; - return ap_pass_brigade(f->next, bb) ; + ap_remove_output_filter(f); + return ap_pass_brigade(f->next, bb); } if (!xml2enc_charset || (xml2enc_charset(f->r, &enc, &cenc) != APR_SUCCESS)) { if (!xml2enc_charset) ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, f->r, APLOGNO(01422) - "No i18n support found. Install mod_xml2enc if required"); + "No i18n support found. Install mod_xml2enc if required"); enc = XML_CHAR_ENCODING_NONE; ap_set_content_type(f->r, "text/html;charset=utf-8"); }