Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2021-06-28 18:01:09 +0300
committerMaxim Dounin <mdounin@mdounin.ru>2021-06-28 18:01:09 +0300
commit31d1c34b394ee30b30084ff160133708d0d3b030 (patch)
treea9eeebfa837b9c8609c16985faf6008ce6f56606 /src/core/ngx_string.c
parenta6c109fea5c13b8aa13ed95ca00a64d62601042b (diff)
Core: fixed comment about escaping in arguments.
After 4954530db2af, the ";" character is escaped by ngx_escape_uri(NGX_ESCAPE_ARGS).
Diffstat (limited to 'src/core/ngx_string.c')
-rw-r--r--src/core/ngx_string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.c b/src/core/ngx_string.c
index 5cc9b26f9..7ed3463bb 100644
--- a/src/core/ngx_string.c
+++ b/src/core/ngx_string.c
@@ -1513,7 +1513,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 args[] = {
0xffffffff, /* 1111 1111 1111 1111 1111 1111 1111 1111 */