1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Cliff Woolley
2002-06-10 22:02:57 +00:00
parent c3bbb78fab
commit 969ce29888

View File

@@ -299,11 +299,11 @@ static apr_table_t *rename_original_env(apr_pool_t *p, apr_table_t *t)
}
static request_rec *internal_internal_redirect(const char *new_uri,
request_rec *r) {
request_rec *r) {
int access_status;
ap_filter_t *f;
request_rec *new = (request_rec *) apr_pcalloc(r->pool,
sizeof(request_rec));
sizeof(request_rec));
new->connection = r->connection;
new->server = r->server;
@@ -356,7 +356,7 @@ static request_rec *internal_internal_redirect(const char *new_uri,
new->htaccess = r->htaccess;
new->no_cache = r->no_cache;
new->expecting_100 = r->expecting_100;
new->expecting_100 = r->expecting_100;
new->no_local_copy = r->no_local_copy;
new->read_length = r->read_length; /* We can only read it once */
new->vlist_validator = r->vlist_validator;
@@ -386,7 +386,7 @@ static request_rec *internal_internal_redirect(const char *new_uri,
ap_add_input_filter("HTTP_IN", NULL, new, new->connection);
apr_table_setn(new->subprocess_env, "REDIRECT_STATUS",
apr_itoa(r->pool, r->status));
apr_itoa(r->pool, r->status));
/*
* XXX: hmm. This is because mod_setenvif and mod_unique_id really need
@@ -516,12 +516,12 @@ AP_DECLARE(void) ap_allow_methods(request_rec *r, int reset, ...)
* well-known methods but any extensions as well.
*/
if (reset) {
ap_clear_method_list(r->allowed_methods);
ap_clear_method_list(r->allowed_methods);
}
va_start(methods, reset);
while ((method = va_arg(methods, const char *)) != NULL) {
ap_method_list_add(r->allowed_methods, method);
ap_method_list_add(r->allowed_methods, method);
}
}