comparison src/http/ngx_http_core_module.c @ 191:71ce40b3c37b

nginx-0.0.1-2003-11-19-19:26:41 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 19 Nov 2003 16:26:41 +0000
parents 02a715e85df1
children 2357fa41738a
comparison
equal deleted inserted replaced
190:02a715e85df1 191:71ce40b3c37b
353 } 353 }
354 } 354 }
355 } 355 }
356 356
357 if (r->content_handler) { 357 if (r->content_handler) {
358 r->connection->write->event_handler = ngx_http_writer; 358 r->connection->write->event_handler = ngx_http_empty_handler;
359 rc = r->content_handler(r); 359 rc = r->content_handler(r);
360 ngx_http_finalize_request(r, rc); 360 ngx_http_finalize_request(r, rc);
361 return; 361 return;
362 } 362 }
363 363