Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9ec4b572
Commit
9ec4b572
authored
May 11, 2018
by
Qian Hong
Committed by
Alexandre Julliard
May 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Map EXDEV to STATUS_NOT_SAME_DEVICE.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7f0b93c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
file.c
server/file.c
+1
-0
No files found.
server/file.c
View file @
9ec4b572
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment