diff options
author | Ruslan Ermilov <ru@nginx.com> | 2015-11-30 12:54:01 +0300 |
---|---|---|
committer | Ruslan Ermilov <ru@nginx.com> | 2015-11-30 12:54:01 +0300 |
commit | 362fb6c1d4620fb061fc242a78cb0343e6c4a7e0 (patch) | |
tree | a1d46108ff728b302ed427cfe0cd487978392444 /src/http/ngx_http_core_module.c | |
parent | 05a38c707728bba20e21c57dcb8035574b56e055 (diff) | |
download | nginx-362fb6c1d4620fb061fc242a78cb0343e6c4a7e0.tar.gz nginx-362fb6c1d4620fb061fc242a78cb0343e6c4a7e0.zip |
Stop emulating a space character after r->method_name.
This is an API change.
The proxy module was modified to not depend on this in 44122bddd9a1.
No known third-party modules seem to depend on this.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 9946958b7..acb9c909e 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -776,7 +776,7 @@ ngx_module_t ngx_http_core_module = { }; -ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET " }; +ngx_str_t ngx_http_core_get_method = { 3, (u_char *) "GET" }; void |