diff options
author | Vladimir Homutov <vl@nginx.com> | 2015-04-25 22:44:02 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2015-04-25 22:44:02 +0300 |
commit | df555ffce6fe6416cc874dcd69a64584c6c7f5e8 (patch) | |
tree | 197ff71ba0b0d9dfa4da7f70e6c5bb1d18ff3c1c /src/http/ngx_http_core_module.c | |
parent | d61f21c5e8735da57fb1e1c1a91103e71f5c6207 (diff) | |
download | nginx-df555ffce6fe6416cc874dcd69a64584c6c7f5e8.tar.gz nginx-df555ffce6fe6416cc874dcd69a64584c6c7f5e8.zip |
Core: the ngx_set_connection_log() macro.
The http and stream versions of this macro were identical.
Diffstat (limited to 'src/http/ngx_http_core_module.c')
-rw-r--r-- | src/http/ngx_http_core_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_core_module.c b/src/http/ngx_http_core_module.c index 096a561c4..81960414f 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -1445,7 +1445,7 @@ ngx_http_update_location_config(ngx_http_request_t *r) } if (r == r->main) { - ngx_http_set_connection_log(r->connection, clcf->error_log); + ngx_set_connection_log(r->connection, clcf->error_log); } if ((ngx_io.flags & NGX_IO_SENDFILE) && clcf->sendfile) { |