aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2013-08-06 19:58:40 +0400
committerValentin Bartenev <vbart@nginx.com>2013-08-06 19:58:40 +0400
commit74dfd08957279720873bd89fe6b3d1a78a61cc0c (patch)
tree1f5938d91bdb289daf7ad0c3b7c84dadfd2e0f6b /src
parentd29d21bade3a0fbe0e2d5d7e0e5546873c2ee588 (diff)
downloadnginx-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')
-rw-r--r--src/core/ngx_conf_file.c10
-rw-r--r--src/core/ngx_conf_file.h2
2 files changed, 0 insertions, 12 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)
{
diff --git a/src/core/ngx_conf_file.h b/src/core/ngx_conf_file.h
index d73a6c8bf..f0a12d41f 100644
--- a/src/core/ngx_conf_file.h
+++ b/src/core/ngx_conf_file.h
@@ -311,8 +311,6 @@ char *ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename);
char *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);
ngx_open_file_t *ngx_conf_open_file(ngx_cycle_t *cycle, ngx_str_t *name);
void ngx_cdecl ngx_conf_log_error(ngx_uint_t level, ngx_conf_t *cf,
ngx_err_t err, const char *fmt, ...);