From 2ec2e35efe1bf1b704d0e9ca1fa9667d9a5a5447 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 8 Apr 2009 19:03:41 +0000 Subject: adopt NGX_FILE_TRUNCATE for win32 --- src/os/unix/ngx_files.h | 2 +- src/os/win32/ngx_files.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src/os') diff --git a/src/os/unix/ngx_files.h b/src/os/unix/ngx_files.h index 982ab12b3..c4d2b7f32 100644 --- a/src/os/unix/ngx_files.h +++ b/src/os/unix/ngx_files.h @@ -63,7 +63,7 @@ typedef struct { #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 diff --git a/src/os/win32/ngx_files.h b/src/os/win32/ngx_files.h index 5efd0fe1a..2efbc2043 100644 --- a/src/os/win32/ngx_files.h +++ b/src/os/win32/ngx_files.h @@ -67,6 +67,7 @@ ngx_fd_t ngx_open_file(u_char *name, u_long mode, u_long create, u_long access); #define NGX_FILE_CREATE_OR_OPEN OPEN_ALWAYS #define NGX_FILE_OPEN OPEN_EXISTING +#define NGX_FILE_TRUNCATE CREATE_ALWAYS #define NGX_FILE_DEFAULT_ACCESS 0 #define NGX_FILE_OWNER_ACCESS 0 -- cgit