comparison src/http/ngx_http_request_body.c @ 2388:722b5aff05ae

use "!= NGX_OK" instead of "== NGX_ERROR"
author Igor Sysoev <igor@sysoev.ru>
date Tue, 09 Dec 2008 17:27:48 +0000
parents f62751dab60d
children 26d9d4a41e91
comparison
equal deleted inserted replaced
2387:7a1478c02415 2388:722b5aff05ae
325 325
326 if (!c->read->ready) { 326 if (!c->read->ready) {
327 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 327 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
328 ngx_add_timer(c->read, clcf->client_body_timeout); 328 ngx_add_timer(c->read, clcf->client_body_timeout);
329 329
330 if (ngx_handle_read_event(c->read, 0) == NGX_ERROR) { 330 if (ngx_handle_read_event(c->read, 0) != NGX_OK) {
331 return NGX_HTTP_INTERNAL_SERVER_ERROR; 331 return NGX_HTTP_INTERNAL_SERVER_ERROR;
332 } 332 }
333 333
334 return NGX_AGAIN; 334 return NGX_AGAIN;
335 } 335 }
460 460
461 r->discard_body = 1; 461 r->discard_body = 1;
462 462
463 r->read_event_handler = ngx_http_read_discarded_request_body_handler; 463 r->read_event_handler = ngx_http_read_discarded_request_body_handler;
464 464
465 if (ngx_handle_read_event(rev, 0) == NGX_ERROR) { 465 if (ngx_handle_read_event(rev, 0) != NGX_OK) {
466 return NGX_HTTP_INTERNAL_SERVER_ERROR; 466 return NGX_HTTP_INTERNAL_SERVER_ERROR;
467 } 467 }
468 468
469 (void) ngx_http_read_discarded_request_body(r); 469 (void) ngx_http_read_discarded_request_body(r);
470 470
517 return; 517 return;
518 } 518 }
519 519
520 /* rc == NGX_AGAIN */ 520 /* rc == NGX_AGAIN */
521 521
522 if (ngx_handle_read_event(rev, 0) == NGX_ERROR) { 522 if (ngx_handle_read_event(rev, 0) != NGX_OK) {
523 c->error = 1; 523 c->error = 1;
524 ngx_http_finalize_request(r, rc); 524 ngx_http_finalize_request(r, rc);
525 return; 525 return;
526 } 526 }
527 527