Commit f84a53c0 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

Handle ECONNRESET in FILE_GetNtStatus.

parent eee6adc9
......@@ -310,6 +310,7 @@ NTSTATUS FILE_GetNtStatus(void)
#endif
case ENOTTY:
case EOPNOTSUPP:return STATUS_NOT_SUPPORTED;
case ECONNRESET:return STATUS_PIPE_DISCONNECTED;
case ENOEXEC: /* ?? */
case ESPIPE: /* ?? */
case EEXIST: /* ?? */
......
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