You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2017/12/18 21:00:17 UTC

svn commit: r1818624 - /httpd/httpd/trunk/modules/filters/mod_proxy_html.c

Author: jailletc36
Date: Mon Dec 18 21:00:17 2017
New Revision: 1818624

URL: http://svn.apache.org/viewvc?rev=1818624&view=rev
Log:
Fix some style

Modified:
    httpd/httpd/trunk/modules/filters/mod_proxy_html.c

Modified: httpd/httpd/trunk/modules/filters/mod_proxy_html.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/filters/mod_proxy_html.c?rev=1818624&r1=1818623&r2=1818624&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/filters/mod_proxy_html.c (original)
+++ httpd/httpd/trunk/modules/filters/mod_proxy_html.c Mon Dec 18 21:00:17 2017
@@ -919,15 +919,15 @@ static apr_status_t proxy_html_filter(ap
                  * 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");
                 }