Alexandre Julliard : ntdll: Add status code for ELOOP error.
Module: wine Branch: master Commit: 6731f33d40e3347f7e11614fa1f1be845916456b URL: https://source.winehq.org/git/wine.git/?a=commit;h=6731f33d40e3347f7e11614fa... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Wed Dec 11 10:28:59 2019 +0100 ntdll: Add status code for ELOOP error. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ntdll/file.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c index dd6d1341b0..a65703d6f9 100644 --- a/dlls/ntdll/file.c +++ b/dlls/ntdll/file.c @@ -495,6 +495,7 @@ NTSTATUS FILE_GetNtStatus(void) case ECONNRESET:return STATUS_PIPE_DISCONNECTED; case EFAULT: return STATUS_ACCESS_VIOLATION; case ESPIPE: return STATUS_ILLEGAL_FUNCTION; + case ELOOP: return STATUS_REPARSE_POINT_NOT_RESOLVED; #ifdef ETIME /* Missing on FreeBSD */ case ETIME: return STATUS_IO_TIMEOUT; #endif
participants (1)
-
Alexandre Julliard