diff options
author | Eric Covener <covener@apache.org> | 2016-01-22 16:30:19 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2016-01-22 16:30:19 +0100 |
commit | 38a88646a94dc4345091c8f7a7455298eee4e0aa (patch) | |
tree | 52032392de3cb6b1623340421db2e0108d28b1be /include/http_core.h | |
parent | expr support for HTTP2 variable (diff) | |
download | apache2-38a88646a94dc4345091c8f7a7455298eee4e0aa.tar.xz apache2-38a88646a94dc4345091c8f7a7455298eee4e0aa.zip |
from feedback, assume all parameters to SetHandler are expressions.
I couldnt come up with a plausible handler name that was an
invalid expression.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1726233 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_core.h')
-rw-r--r-- | include/http_core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/http_core.h b/include/http_core.h index eaff248575..684fba49cf 100644 --- a/include/http_core.h +++ b/include/http_core.h @@ -565,7 +565,7 @@ typedef struct { ap_regex_t *r; const char *mime_type; /* forced with ForceType */ - const char *handler; /* forced with SetHandler */ + const char *handler; /* forced by something other than SetHandler */ const char *output_filters; /* forced with SetOutputFilters */ const char *input_filters; /* forced with SetInputFilters */ int accept_path_info; /* forced with AcceptPathInfo */ @@ -646,7 +646,7 @@ typedef struct { apr_hash_t *response_code_exprs; unsigned int qualify_redirect_url :2; - ap_expr_info_t *expr_handler; /* forced with SetHandler expr= */ + ap_expr_info_t *expr_handler; /* forced with SetHandler */ } core_dir_config; /* macro to implement off by default behaviour */ |