diff options
author | Ruslan Ermilov <ru@nginx.com> | 2021-05-19 16:24:13 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2021-05-19 16:24:13 +0300 |
commit | 6029e211c63895c44a942bacc32c6d2f565cc3e3 (patch) | |
tree | 731c334a817ab35a910dc9bf0f6b30f8d3ce0b93 /src | |
parent | 173f16f736c10eae46cd15dd861b04b82d91a37a (diff) | |
download | nginx-6029e211c63895c44a942bacc32c6d2f565cc3e3.tar.gz nginx-6029e211c63895c44a942bacc32c6d2f565cc3e3.zip |
Core: fixed comment about msie_refresh escaping.
After 12a656452ad1, the "%" character is no longer escaped by
ngx_escape_uri(NGX_ESCAPE_REFRESH).
Diffstat (limited to 'src')
-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 93f32ea0c..5cc9b26f9 100644 --- a/src/core/ngx_string.c +++ b/src/core/ngx_string.c @@ -1573,7 +1573,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 */ }; - /* " ", """, "%", "'", %00-%1F, %7F-%FF */ + /* " ", """, "'", %00-%1F, %7F-%FF */ static uint32_t refresh[] = { 0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */ |