Commit a719244b authored by David Reid's avatar David Reid
Browse files

s/cont/pool/

This gets us building again after the change in APR.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89510 13f79535-47bb-0310-9956-ffa450edef68
parent 5f382d18
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -995,7 +995,7 @@ static int uniq_field_values(void *d, const char *key, const char *val)

    values = (apr_array_header_t *)d;

    e = apr_pstrdup(values->cont, val);
    e = apr_pstrdup(values->pool, val);

    do {
        /* Find a non-empty fieldname */
@@ -1940,7 +1940,7 @@ AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest,
    imethods = (char **) src->method_list->elts;
    for (i = 0; i < src->method_list->nelts; ++i) {
        omethods = (char **) apr_array_push(dest->method_list);
        *omethods = apr_pstrdup(dest->method_list->cont, imethods[i]);
        *omethods = apr_pstrdup(dest->method_list->pool, imethods[i]);
    }
}