From: Maxim Dounin Date: Mon, 28 Jun 2021 15:01:09 +0000 (+0300) Subject: Core: fixed comment about escaping in arguments. X-Git-Tag: release-1.21.1~9 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=31d1c34b394ee30b30084ff160133708d0d3b030;p=nginx.git Core: fixed comment about escaping in arguments. After 4954530db2af, the ";" character is escaped by ngx_escape_uri(NGX_ESCAPE_ARGS). --- 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 */