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
path: root/src/http
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-09-23 23:18:22 +0400
committerIgor Sysoev <igor@sysoev.ru>2007-09-23 23:18:22 +0400
commit10c364d9874edab26ddb8ff689702ba124af6e2a (patch)
treebeef91a70a6d88390d2248491a0eeb5b105d50db /src/http
parentab605f1ac0fd925fac542036db3c50e786a255f1 (diff)
r1465 merge:
style fix
Diffstat (limited to 'src/http')
-rw-r--r--src/http/ngx_http_request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index 9ec0cf7b9..e75d9ff5c 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -1295,7 +1295,7 @@ ngx_http_process_request_header(ngx_http_request_t *r)
return NGX_ERROR;
}
- if (r->method & (NGX_HTTP_TRACE)) {
+ if (r->method & NGX_HTTP_TRACE) {
ngx_log_error(NGX_LOG_INFO, r->connection->log, 0,
"client sent TRACE method");
ngx_http_finalize_request(r, NGX_HTTP_NOT_ALLOWED);