commit | 2ec2e35efe1bf1b704d0e9ca1fa9667d9a5a5447 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Wed Apr 08 19:03:41 2009 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Wed Apr 08 19:03:41 2009 +0000 |
tree | b91563a4b69ea5f23c6ffd217c650d0a6f7fc3c5 | |
parent | 64851bb2aeef37a708ca34f74280c05cd38ad969 [diff] [blame] |
adopt NGX_FILE_TRUNCATE for win32
diff --git a/src/os/unix/ngx_files.h b/src/os/unix/ngx_files.h index 982ab12..c4d2b7f 100644 --- a/src/os/unix/ngx_files.h +++ b/src/os/unix/ngx_files.h
@@ -63,7 +63,7 @@ #define NGX_FILE_RDWR O_RDWR #define NGX_FILE_CREATE_OR_OPEN O_CREAT #define NGX_FILE_OPEN 0 -#define NGX_FILE_TRUNCATE O_TRUNC +#define NGX_FILE_TRUNCATE O_CREAT|O_TRUNC #define NGX_FILE_APPEND O_WRONLY|O_APPEND #define NGX_FILE_DEFAULT_ACCESS 0644