diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 19:52:18 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-01-18 19:52:18 +0000 |
commit | fe1cb8c3acb6a7e12c10b4bd70411ebf5b005a7e (patch) | |
tree | 5b8ae727be5803aa9ac1d5fac6bc11df9f7cff6c /src/core/ngx_file.h | |
parent | 6ed365fa8ba90359e8a6673acb6d118092183aec (diff) | |
download | nginx-fe1cb8c3acb6a7e12c10b4bd70411ebf5b005a7e.tar.gz nginx-fe1cb8c3acb6a7e12c10b4bd70411ebf5b005a7e.zip |
rename mode to access
Diffstat (limited to 'src/core/ngx_file.h')
-rw-r--r-- | src/core/ngx_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_file.h b/src/core/ngx_file.h index 71c993175..f8107ae8c 100644 --- a/src/core/ngx_file.h +++ b/src/core/ngx_file.h @@ -49,7 +49,7 @@ typedef struct { ngx_pool_t *pool; char *warn; - ngx_uint_t mode; + ngx_uint_t access; unsigned log_level:8; unsigned persistent:1; @@ -76,7 +76,7 @@ struct ngx_tree_ctx_s { ssize_t ngx_write_chain_to_temp_file(ngx_temp_file_t *tf, ngx_chain_t *chain); ngx_int_t ngx_create_temp_file(ngx_file_t *file, ngx_path_t *path, - ngx_pool_t *pool, ngx_uint_t persistent,ngx_uint_t mode); + ngx_pool_t *pool, ngx_uint_t persistent,ngx_uint_t access); void ngx_create_hashed_filename(ngx_file_t *file, ngx_path_t *path); ngx_int_t ngx_create_path(ngx_file_t *file, ngx_path_t *path); ngx_err_t ngx_create_full_path(u_char *dir, ngx_uint_t access); |