Skip to content
Snippets Groups Projects
Commit 9ec4b572 authored by Qian Hong's avatar Qian Hong Committed by Alexandre Julliard
Browse files

server: Map EXDEV to STATUS_NOT_SAME_DEVICE.

parent 7f0b93c7
No related branches found
No related tags found
No related merge requests found
......@@ -671,6 +671,7 @@ void file_set_error(void)
case EFBIG: set_error( STATUS_SECTION_TOO_BIG ); break;
case ENODEV: set_error( STATUS_NO_SUCH_DEVICE ); break;
case ENXIO: set_error( STATUS_NO_SUCH_DEVICE ); break;
case EXDEV: set_error( STATUS_NOT_SAME_DEVICE ); break;
#ifdef EOVERFLOW
case EOVERFLOW: set_error( STATUS_INVALID_PARAMETER ); break;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment