comparison src/http/ngx_http_request.c @ 2019:e720be7bc195

style fix
author Igor Sysoev <igor@sysoev.ru>
date Wed, 21 May 2008 17:39:51 +0000
parents 4151c33e4dfa
children 2a92804f4109
comparison
equal deleted inserted replaced
2018:c54ccad7b2f0 2019:e720be7bc195
1834 1834
1835 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module); 1835 clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1836 1836
1837 if (!ngx_terminate 1837 if (!ngx_terminate
1838 && !ngx_exiting 1838 && !ngx_exiting
1839 && r->keepalive != 0 1839 && r->keepalive
1840 && clcf->keepalive_timeout > 0) 1840 && clcf->keepalive_timeout > 0)
1841 { 1841 {
1842 ngx_http_set_keepalive(r); 1842 ngx_http_set_keepalive(r);
1843 return; 1843 return;
1844 1844