comparison src/http/ngx_http_request.c @ 4593:834049edae24

Fixed grammar in error messages.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 12 Apr 2012 19:35:41 +0000
parents b00098cbc44d
children 7d0561b2e0fb
comparison
equal deleted inserted replaced
4592:ab1649495d30 4593:834049edae24
1173 return NGX_AGAIN; 1173 return NGX_AGAIN;
1174 } 1174 }
1175 1175
1176 if (n == 0) { 1176 if (n == 0) {
1177 ngx_log_error(NGX_LOG_INFO, c->log, 0, 1177 ngx_log_error(NGX_LOG_INFO, c->log, 0,
1178 "client closed prematurely connection"); 1178 "client prematurely closed connection");
1179 } 1179 }
1180 1180
1181 if (n == 0 || n == NGX_ERROR) { 1181 if (n == 0 || n == NGX_ERROR) {
1182 c->error = 1; 1182 c->error = 1;
1183 c->log->action = "reading client request headers"; 1183 c->log->action = "reading client request headers";
2424 if (err) { 2424 if (err) {
2425 rev->error = 1; 2425 rev->error = 1;
2426 } 2426 }
2427 2427
2428 ngx_log_error(NGX_LOG_INFO, c->log, err, 2428 ngx_log_error(NGX_LOG_INFO, c->log, err,
2429 "client closed prematurely connection"); 2429 "client prematurely closed connection");
2430 2430
2431 ngx_http_finalize_request(r, 0); 2431 ngx_http_finalize_request(r, 0);
2432 } 2432 }
2433 2433
2434 2434