From 6871615528044ff3dce2bf2abdf862d1178a2c9e Mon Sep 17 00:00:00 2001 From: Maxim Dounin Date: Tue, 29 Mar 2016 09:51:46 +0300 Subject: Win32: additional error code NGX_EEXIST_FILE (ticket #910). On Windows there are two possible error codes which correspond to the EEXIST error code: ERROR_FILE_EXISTS used by CreateFile(CREATE_NEW), and ERROR_ALREADY_EXISTS used by CreateDirectory(). MoveFile() seems to use both: ERROR_ALREADY_EXISTS when moving within one filesystem, and ERROR_FILE_EXISTS when copying a file to a different drive. --- src/os/unix/ngx_errno.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/os/unix') diff --git a/src/os/unix/ngx_errno.h b/src/os/unix/ngx_errno.h index 16cafda31..7d6ca764d 100644 --- a/src/os/unix/ngx_errno.h +++ b/src/os/unix/ngx_errno.h @@ -25,6 +25,7 @@ typedef int ngx_err_t; #define NGX_EACCES EACCES #define NGX_EBUSY EBUSY #define NGX_EEXIST EEXIST +#define NGX_EEXIST_FILE EEXIST #define NGX_EXDEV EXDEV #define NGX_ENOTDIR ENOTDIR #define NGX_EISDIR EISDIR -- cgit