diff src/http/ngx_http_event.c @ 137:2a615b036870

nginx-0.0.1-2003-10-03-19:50:53 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 03 Oct 2003 15:50:53 +0000
parents e29909bd9b8a
children
line wrap: on
line diff
--- a/src/http/ngx_http_event.c
+++ b/src/http/ngx_http_event.c
@@ -292,7 +292,7 @@ static void ngx_http_process_request_lin
         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_hea
             }
         }
 
-        rc = ngx_parse_http_header_line(r, r->header_in);
+        rc = ngx_http_parse_header_line(r, r->header_in);
 
         if (rc == NGX_OK) {