aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-05-14 16:24:39 +0000
committerIgor Sysoev <igor@sysoev.ru>2009-05-14 16:24:39 +0000
commit731e6a9b11267ecb26f2833997610de353beeef2 (patch)
tree3d323cbf75f049b17ce1a429d0ff2d3037957b36 /src
parent2d252980eddcf8b77eed217704100e5d86c51430 (diff)
downloadnginx-731e6a9b11267ecb26f2833997610de353beeef2.tar.gz
nginx-731e6a9b11267ecb26f2833997610de353beeef2.zip
style fix
Diffstat (limited to 'src')
-rw-r--r--src/core/ngx_conf_file.c4
-rw-r--r--src/event/modules/ngx_aio_module.c6
-rw-r--r--src/http/ngx_http_upstream.c4
3 files changed, 10 insertions, 4 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c
index 644243781..1f6b1f732 100644
--- a/src/core/ngx_conf_file.c
+++ b/src/core/ngx_conf_file.c
@@ -446,7 +446,9 @@ ngx_conf_read_token(ngx_conf_t *cf)
last_space = 1;
sharp_comment = 0;
variable = 0;
- quoted = s_quoted = d_quoted = 0;
+ quoted = 0;
+ s_quoted = 0;
+ d_quoted = 0;
cf->args->nelts = 0;
b = cf->conf_file->buffer;
diff --git a/src/event/modules/ngx_aio_module.c b/src/event/modules/ngx_aio_module.c
index 985b065c6..d1518eded 100644
--- a/src/event/modules/ngx_aio_module.c
+++ b/src/event/modules/ngx_aio_module.c
@@ -134,12 +134,14 @@ ngx_aio_del_connection(ngx_connection_t *c, ngx_uint_t flags)
ngx_log_debug1(NGX_LOG_DEBUG_EVENT, c->log, 0, "aio_cancel: %d", rc);
if (rc == AIO_CANCELED) {
- c->read->active = c->write->active = 0;
+ c->read->active = 0;
+ c->write->active = 0;
return NGX_OK;
}
if (rc == AIO_ALLDONE) {
- c->read->active = c->write->active = 0;
+ c->read->active = 0;
+ c->write->active = 0;
ngx_log_error(NGX_LOG_ALERT, c->log, 0,
"aio_cancel() returned AIO_ALLDONE");
return NGX_OK;
diff --git a/src/http/ngx_http_upstream.c b/src/http/ngx_http_upstream.c
index 0a6fddbdb..e72dafff6 100644
--- a/src/http/ngx_http_upstream.c
+++ b/src/http/ngx_http_upstream.c
@@ -972,7 +972,9 @@ ngx_http_upstream_connect(ngx_http_request_t *r, ngx_http_upstream_t *u)
u->output.sendfile = c->sendfile;
c->pool = r->pool;
- c->read->log = c->write->log = c->log = r->connection->log;
+ c->log = r->connection->log;
+ c->read->log = c->log;
+ c->write->log = c->log;
/* init or reinit the ngx_output_chain() and ngx_chain_writer() contexts */