mirror of
https://github.com/apache/httpd.git
synced 2025-08-10 02:56:11 +00:00
creating ap_array_index in util, forwarding scheme into request processing, enabling SSL vars only when scheme is not http:, delayed connection creation until task worker assignment
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1696428 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -3149,7 +3149,7 @@ AP_DECLARE(char *) ap_get_exec_line(apr_pool_t *p,
|
||||
return apr_pstrndup(p, buf, k);
|
||||
}
|
||||
|
||||
AP_DECLARE(int) ap_array_index(apr_array_header_t *array, const char *s)
|
||||
AP_DECLARE(int) ap_array_index(const apr_array_header_t *array, const char *s)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < array->nelts; i++) {
|
||||
|
Reference in New Issue
Block a user