diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-11-09 13:17:58 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-11-09 13:17:58 +0000 |
commit | cc5484fab1f8e5a5f08c05be6b2b7d040896849a (patch) | |
tree | 68e27f143c9c0012eda5c8d9e29c65f64c245163 /src/core/ngx_string.c | |
parent | 8152d0aeed966ba3a4b8e51622be6fedbb534891 (diff) | |
download | nginx-cc5484fab1f8e5a5f08c05be6b2b7d040896849a.tar.gz nginx-cc5484fab1f8e5a5f08c05be6b2b7d040896849a.zip |
do not encode already encoded characters in msie_refresh
Diffstat (limited to 'src/core/ngx_string.c')
-rw-r--r-- | src/core/ngx_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c index 69f032e2e..2eaffd60d 100644 --- a/src/core/ngx_string.c +++ b/src/core/ngx_string.c @@ -1147,7 +1147,7 @@ ngx_escape_uri(u_char *dst, u_char *src, size_t size, ngx_uint_t type) 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */ /* ?>=< ;:98 7654 3210 /.-, +*)( '&%$ #"! */ - 0x000000a5, /* 0000 0000 0000 0000 0000 0000 1010 0101 */ + 0x00000085, /* 0000 0000 0000 0000 0000 0000 1000 0101 */ /* _^]\ [ZYX WVUT SRQP ONML KJIH GFED CBA@ */ 0x00000000, /* 0000 0000 0000 0000 0000 0000 0000 0000 */ |