summaryrefslogtreecommitdiff
path: root/include/http_core.h
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2016-01-22 15:30:19 +0000
committerEric Covener <covener@apache.org>2016-01-22 15:30:19 +0000
commit38a88646a94dc4345091c8f7a7455298eee4e0aa (patch)
tree52032392de3cb6b1623340421db2e0108d28b1be /include/http_core.h
parent44026b36fa9fe6a521673eb0d17eb4478a47fc7c (diff)
downloadhttpd-38a88646a94dc4345091c8f7a7455298eee4e0aa.tar.gz
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.h4
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 */