-*- coding: utf-8 -*-
Changes with Apache 2.2.6
+ *) mod_proxy: don't URLencode tilde in path component
+ PR 38448 [Stijn Hoop <stijn sandcat.nl>]
+
*) proxy/ajp_header.c: Fixed header token string comparisons
Matching of header tokens failed to include the trailing NIL byte
and could misinterpret a longer header token for a shorter.
trawick says: The new directives should be documented in trunk,
so that docs are available for backport at the same time.
- *) proxy_util.c: Don't URLencode tilde in path component
- PR 38448
- http://svn.apache.org/viewvc?view=rev&revision=429879
- +1: niq, rpluem, martin
-
* ssl/ssl_engine_io.c: Fix SSL Protocol hexdumps for EBCDIC systems
A conversion is required for mod_ssl to display the SSL protocol correctly
on EBCDIC machines. Backport of rev. 349906
* it only permits ; / ? : @ = & as reserved chars.)
*/
if (t == enc_path) {
- allowed = "$-_.+!*'(),;:@&=";
+ allowed = "~$-_.+!*'(),;:@&=";
}
else if (t == enc_search) {
allowed = "$-_.!*'(),;:@&=";