diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2007-12-12 16:51:43 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-12 16:51:43 +0000 |
| commit | 6525b755c0c5e075a6a57a320ec0cb76b7221728 (patch) | |
| tree | 9fb8ad48b79365a040045c31784e8b63ccbe7bdd /src/http/ngx_http_core_module.c | |
| parent | 71704b27c9eea7810f1d5158240b4d464629abe1 (diff) | |
| download | nginx-6525b755c0c5e075a6a57a320ec0cb76b7221728.tar.gz nginx-6525b755c0c5e075a6a57a320ec0cb76b7221728.tar.bz2 | |
r1560 merge:
use pool instead of ngx_conf_t
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 78ff87de0..7aa7516e0 100644 --- a/src/http/ngx_http_core_module.c +++ b/src/http/ngx_http_core_module.c @@ -2578,7 +2578,7 @@ ngx_http_core_listen(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) u.listen = 1; u.default_port = 80; - if (ngx_parse_url(cf, &u) != NGX_OK) { + if (ngx_parse_url(cf->pool, &u) != NGX_OK) { if (u.err) { ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "%s in \"%V\" of the \"listen\" directive", |
