diff options
author | Valentin Bartenev <vbart@nginx.com> | 2013-08-06 19:58:40 +0400 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2013-08-06 19:58:40 +0400 |
commit | 74dfd08957279720873bd89fe6b3d1a78a61cc0c (patch) | |
tree | 1f5938d91bdb289daf7ad0c3b7c84dadfd2e0f6b /src/core/ngx_conf_file.c | |
parent | d29d21bade3a0fbe0e2d5d7e0e5546873c2ee588 (diff) | |
download | nginx-74dfd08957279720873bd89fe6b3d1a78a61cc0c.tar.gz nginx-74dfd08957279720873bd89fe6b3d1a78a61cc0c.zip |
API change: removed the ngx_conf_full_name() function.
The ngx_get_full_name() should be used instead.
Diffstat (limited to 'src/core/ngx_conf_file.c')
-rw-r--r-- | src/core/ngx_conf_file.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/ngx_conf_file.c b/src/core/ngx_conf_file.c index 38483428e..afa27d76c 100644 --- a/src/core/ngx_conf_file.c +++ b/src/core/ngx_conf_file.c @@ -797,16 +797,6 @@ ngx_conf_include(ngx_conf_t *cf, ngx_command_t *cmd, void *conf) } -ngx_int_t -ngx_conf_full_name(ngx_cycle_t *cycle, ngx_str_t *name, ngx_uint_t conf_prefix) -{ - return ngx_get_full_name(cycle->pool, - conf_prefix ? &cycle->conf_prefix: - &cycle->prefix, - name); -} - - ngx_open_file_t * ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name) { |