ntdll: ETIME is not defined on FreeBSD.

This commit is contained in:
Francois Gouget 2011-10-09 15:29:28 +02:00 committed by Alexandre Julliard
parent 81b67c5b15
commit 5feb7b9b33
1 changed files with 2 additions and 0 deletions

View File

@ -347,7 +347,9 @@ NTSTATUS FILE_GetNtStatus(void)
case ECONNRESET:return STATUS_PIPE_DISCONNECTED;
case EFAULT: return STATUS_ACCESS_VIOLATION;
case ESPIPE: return STATUS_ILLEGAL_FUNCTION;
#ifdef ETIME /* Missing on FreeBSD */
case ETIME: return STATUS_IO_TIMEOUT;
#endif
case ENOEXEC: /* ?? */
case EEXIST: /* ?? */
default: