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

Fixed grammar in error messages.
author Ruslan Ermilov <ru@nginx.com>
date Thu, 12 Apr 2012 19:35:41 +0000
parents d620f497c50f
children dfa586842962 7556a7acb14f
comparison
equal deleted inserted replaced
4592:ab1649495d30 4593:834049edae24
301 break; 301 break;
302 } 302 }
303 303
304 if (n == 0) { 304 if (n == 0) {
305 ngx_log_error(NGX_LOG_INFO, c->log, 0, 305 ngx_log_error(NGX_LOG_INFO, c->log, 0,
306 "client closed prematurely connection"); 306 "client prematurely closed connection");
307 } 307 }
308 308
309 if (n == 0 || n == NGX_ERROR) { 309 if (n == 0 || n == NGX_ERROR) {
310 c->error = 1; 310 c->error = 1;
311 return NGX_HTTP_BAD_REQUEST; 311 return NGX_HTTP_BAD_REQUEST;