diff options
author | Stefan Fritsch <sf@apache.org> | 2011-11-09 00:37:13 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-11-09 00:37:13 +0100 |
commit | a3ffb7e3dfc01207281be5f23bc4d0a235414c2f (patch) | |
tree | 3afe219f407aa111d7e8ee0d7ebc169dda746b88 /modules/filters | |
parent | fix typo (diff) | |
download | apache2-a3ffb7e3dfc01207281be5f23bc4d0a235414c2f.tar.xz apache2-a3ffb7e3dfc01207281be5f23bc4d0a235414c2f.zip |
Remove some ap_add_version_component() calls that don't provide any information
because the modules don't have separate version numbers anymore
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199532 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/filters')
-rw-r--r-- | modules/filters/mod_proxy_html.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index d187a96f5e..120747d174 100644 --- a/modules/filters/mod_proxy_html.c +++ b/modules/filters/mod_proxy_html.c @@ -29,9 +29,6 @@ #define VERBOSEB(x) if (verbose) {x} #endif -/* 3.1.2 - trivial changes to fix compile on Windows */ -#define VERSION_STRING "proxy_html/3.1.2" - #include <ctype.h> /* libxml2 */ @@ -1225,7 +1222,6 @@ static const command_rec proxy_html_cmds[] = { static int mod_proxy_html(apr_pool_t* p, apr_pool_t* p1, apr_pool_t* p2, server_rec* s) { - ap_add_version_component(p, VERSION_STRING); seek_meta = ap_pregcomp(p, "<meta[^>]*(http-equiv)[^>]*>", AP_REG_EXTENDED|AP_REG_ICASE); seek_content = apr_strmatch_precompile(p, "content", 0); |