diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-17 21:29:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-17 21:29:34 +0000 |
commit | 00cbb8a16e09e31b9753b777135e7d73bf1c760e (patch) | |
tree | 92daf1f4435ea414539b1579c7b99f704934f0fa /src/core/ngx_file.h | |
parent | 3b112b8c219cf3b7881e0045f904925397f24ef8 (diff) | |
download | nginx-00cbb8a16e09e31b9753b777135e7d73bf1c760e.tar.gz nginx-00cbb8a16e09e31b9753b777135e7d73bf1c760e.zip |
ngx_create_hashed_filename() does not need ngx_file_t
Diffstat (limited to 'src/core/ngx_file.h')
-rw-r--r-- | src/core/ngx_file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_file.h b/src/core/ngx_file.h index c39059d30..61089ff34 100644 --- a/src/core/ngx_file.h +++ b/src/core/ngx_file.h @@ -84,7 +84,7 @@ 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 clean, ngx_uint_t access); -void ngx_create_hashed_filename(ngx_file_t *file, ngx_path_t *path); +void ngx_create_hashed_filename(ngx_path_t *path, u_char *file, size_t len); 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); ngx_int_t ngx_add_path(ngx_conf_t *cf, ngx_path_t **slot); |