diff options
Diffstat (limited to 'src/http/ngx_http_event.c')
-rw-r--r-- | src/http/ngx_http_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_event.c b/src/http/ngx_http_event.c index a5386965e..1a8338b8c 100644 --- a/src/http/ngx_http_event.c +++ b/src/http/ngx_http_event.c @@ -400,7 +400,7 @@ static int ngx_http_process_request_header_line(ngx_http_request_t *r) for (i = 0; headers_in[i].len != 0; i++) { if (headers_in[i].len == h->key.len) { - if (strcasecmp(headers_in[i].data, h->key.data) == 0) { + if (ngx_strcasecmp(headers_in[i].data, h->key.data) == 0) { *((ngx_table_elt_t **) ((char *) &r->headers_in + headers_in[i].offset)) = h; } |