You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jf...@apache.org on 2023/06/12 13:32:12 UTC

svn commit: r1910368 - /httpd/httpd/trunk/modules/http/http_filters.c

Author: jfclere
Date: Mon Jun 12 13:32:12 2023
New Revision: 1910368

URL: http://svn.apache.org/viewvc?rev=1910368&view=rev
Log:
Arrange ap_h1_response_out_filter() according to include/mod_core.h.

Modified:
    httpd/httpd/trunk/modules/http/http_filters.c

Modified: httpd/httpd/trunk/modules/http/http_filters.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_filters.c?rev=1910368&r1=1910367&r2=1910368&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_filters.c (original)
+++ httpd/httpd/trunk/modules/http/http_filters.c Mon Jun 12 13:32:12 2023
@@ -1871,7 +1871,7 @@ typedef struct h1_response_ctx {
     apr_bucket_brigade *tmpbb;
 } h1_response_ctx;
 
-AP_CORE_DECLARE_NONSTD(apr_status_t) ap_h1_response_out_filter(ap_filter_t *f,
+apr_status_t ap_h1_response_out_filter(ap_filter_t *f,
                                                                apr_bucket_brigade *b)
 {
     request_rec *r = f->r;
@@ -2313,4 +2313,4 @@ cleanup:
         return APR_SUCCESS;
     }
     return rv;
-}
\ No newline at end of file
+}