aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_event.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/ngx_http_event.c')
-rw-r--r--src/http/ngx_http_event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http/ngx_http_event.c b/src/http/ngx_http_event.c
index 161c483cd..ea8120764 100644
--- a/src/http/ngx_http_event.c
+++ b/src/http/ngx_http_event.c
@@ -292,7 +292,7 @@ static void ngx_http_process_request_line(ngx_event_t *rev)
return;
}
- rc = ngx_parse_http_request_line(r);
+ rc = ngx_http_parse_request_line(r);
if (rc == NGX_OK) {
@@ -538,7 +538,7 @@ static void ngx_http_process_request_headers(ngx_event_t *rev)
}
}
- rc = ngx_parse_http_header_line(r, r->header_in);
+ rc = ngx_http_parse_header_line(r, r->header_in);
if (rc == NGX_OK) {