diff options
author | Stefan Fritsch <sf@apache.org> | 2010-12-04 12:22:30 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2010-12-04 12:22:30 +0100 |
commit | b93e49391bdfdab63b9405d33106e3f1fca575b9 (patch) | |
tree | 581d4b5a97cb265c03a10e471b50756957aa6f60 /modules/metadata | |
parent | core: Fail startup when the argument to ServerName looks like a glob (diff) | |
download | apache2-b93e49391bdfdab63b9405d33106e3f1fca575b9.tar.xz apache2-b93e49391bdfdab63b9405d33106e3f1fca575b9.zip |
Rename ap_expr's typedef names:
ap_expr -> ap_expr_t
ap_expr_parse_ctx -> ap_expr_parse_ctx_t
ap_expr_eval_ctx -> ap_expr_eval_ctx_t
ap_expr_lookup_fn -> ap_expr_lookup_fn_t
ap_expr_node_op -> ap_expr_node_op_e
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1042146 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/metadata')
-rw-r--r-- | modules/metadata/mod_setenvif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/metadata/mod_setenvif.c b/modules/metadata/mod_setenvif.c index 9676603fa5..6ad3144a2c 100644 --- a/modules/metadata/mod_setenvif.c +++ b/modules/metadata/mod_setenvif.c @@ -644,7 +644,7 @@ static int match_headers(request_rec *r) * wasn't present or is undefined. Represent that as an empty string * so that REs like "^$" will work and allow envariable setting * based on missing or empty field. This is also necessary to make - * ap_pregsub work after evaluating an ap_expr which does set the + * ap_pregsub work after evaluating an ap_expr_t which does set the * regexp backref data. */ if (val == NULL) { |