diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-11-14 07:20:34 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-11-14 07:20:34 +0000 |
commit | 7f9d894e1069306f7361201a77efbe7b866024ff (patch) | |
tree | 9779ce5dd7d38af4c8039047768cedc92c31ec1f /src/os/unix/ngx_files.h | |
parent | 45890ea8c13a561fe3fd66bf639ad429f3c18846 (diff) | |
download | nginx-7f9d894e1069306f7361201a77efbe7b866024ff.tar.gz nginx-7f9d894e1069306f7361201a77efbe7b866024ff.zip |
nginx-0.0.1-2003-11-14-10:20:34 import
Diffstat (limited to 'src/os/unix/ngx_files.h')
-rw-r--r-- | src/os/unix/ngx_files.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_files.h b/src/os/unix/ngx_files.h index 9990ae8c3..369c3ad5d 100644 --- a/src/os/unix/ngx_files.h +++ b/src/os/unix/ngx_files.h @@ -45,7 +45,7 @@ ssize_t ngx_write_chain_to_file(ngx_file_t *file, ngx_chain_t *ce, off_t offset, ngx_pool_t *pool); -#define ngx_rename_file rename +#define ngx_rename_file(from, to, pool) rename(from->data, to->data) #define ngx_rename_file_n "rename" |