Commit 905a819d authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

ntdll: Map ETIME to STATUS_IO_TIMEOUT.

parent 2843d4f8
......@@ -347,6 +347,7 @@ NTSTATUS FILE_GetNtStatus(void)
case ECONNRESET:return STATUS_PIPE_DISCONNECTED;
case EFAULT: return STATUS_ACCESS_VIOLATION;
case ESPIPE: return STATUS_ILLEGAL_FUNCTION;
case ETIME: return STATUS_IO_TIMEOUT;
case ENOEXEC: /* ?? */
case EEXIST: /* ?? */
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment