From a3eef70783164098f2720826e33b69ba8a6ccc7d Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 18 Jan 2007 20:37:19 +0000 Subject: [PATCH] NGX_FILE_WRONLY --- src/os/unix/ngx_files.h | 1 + src/os/win32/ngx_files.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/os/unix/ngx_files.h b/src/os/unix/ngx_files.h index e05cb4409..c4eccf1fe 100644 --- a/src/os/unix/ngx_files.h +++ b/src/os/unix/ngx_files.h @@ -22,6 +22,7 @@ #define ngx_open_file_n "open()" #define NGX_FILE_RDONLY O_RDONLY +#define NGX_FILE_WRONLY O_WRONLY #define NGX_FILE_RDWR O_RDWR #define NGX_FILE_CREATE_OR_OPEN O_CREAT #define NGX_FILE_OPEN 0 diff --git a/src/os/win32/ngx_files.h b/src/os/win32/ngx_files.h index 7db5c8100..f5a97f8b4 100644 --- a/src/os/win32/ngx_files.h +++ b/src/os/win32/ngx_files.h @@ -38,6 +38,7 @@ #define ngx_open_file_n "CreateFile()" #define NGX_FILE_RDONLY GENERIC_READ +#define NGX_FILE_WRONLY GENERIC_WRITE #define NGX_FILE_RDWR GENERIC_READ|GENERIC_WRITE #define NGX_FILE_CREATE_OR_OPEN OPEN_ALWAYS #define NGX_FILE_OPEN OPEN_EXISTING