ntdll: Map ETIME to STATUS_IO_TIMEOUT

André Hentschel nerv at dawncrow.de
Mon Oct 3 10:45:27 CDT 2011


At least quites the noise in http://bugs.winehq.org/show_bug.cgi?id=25922
---
 dlls/ntdll/file.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c
index 278da5d..43d8929 100644
--- a/dlls/ntdll/file.c
+++ b/dlls/ntdll/file.c
@@ -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:
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list