Commit 6731f33d authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll: Add status code for ELOOP error.

parent b851f1ca
......@@ -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
......
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