You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2016/03/09 17:09:35 UTC

svn commit: r1734281 - /httpd/httpd/trunk/server/protocol.c

Author: icing
Date: Wed Mar  9 16:09:35 2016
New Revision: 1734281

URL: http://svn.apache.org/viewvc?rev=1734281&view=rev
Log:
declaring ap_create_request for external linkage

Modified:
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=1734281&r1=1734280&r2=1734281&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Wed Mar  9 16:09:35 2016
@@ -1003,7 +1003,7 @@ AP_DECLARE(void) ap_get_mime_headers(req
     apr_brigade_destroy(tmp_bb);
 }
 
-request_rec *ap_create_request(conn_rec *conn)
+AP_DECLARE(request_rec *) ap_create_request(conn_rec *conn)
 {
     request_rec *r;
     apr_pool_t *p;