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
ced2e56d
Commit
ced2e56d
authored
Jan 08, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jan 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Map ESPIPE to STATUS_ILLEGAL_FUNCTION for consistency with ntdll.
parent
ccd60c19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
file.c
server/file.c
+1
-1
trace.c
server/trace.c
+0
-1
No files found.
server/file.c
View file @
ced2e56d
...
...
@@ -295,7 +295,7 @@ void file_set_error(void)
case
EMFILE
:
set_error
(
STATUS_TOO_MANY_OPENED_FILES
);
break
;
case
EEXIST
:
set_error
(
STATUS_OBJECT_NAME_COLLISION
);
break
;
case
EINVAL
:
set_error
(
STATUS_INVALID_PARAMETER
);
break
;
case
ESPIPE
:
set_
win32_error
(
ERROR_SEEK
);
break
;
case
ESPIPE
:
set_
error
(
STATUS_ILLEGAL_FUNCTION
);
break
;
case
ENOTEMPTY
:
set_error
(
STATUS_DIRECTORY_NOT_EMPTY
);
break
;
case
EIO
:
set_error
(
STATUS_ACCESS_VIOLATION
);
break
;
case
ENOTDIR
:
set_error
(
STATUS_NOT_A_DIRECTORY
);
break
;
...
...
server/trace.c
View file @
ced2e56d
...
...
@@ -3962,7 +3962,6 @@ static const struct
{
"ERROR_CLIPBOARD_NOT_OPEN"
,
0xc0010000
|
ERROR_CLIPBOARD_NOT_OPEN
},
{
"ERROR_INVALID_INDEX"
,
0xc0010000
|
ERROR_INVALID_INDEX
},
{
"ERROR_INVALID_WINDOW_HANDLE"
,
0xc0010000
|
ERROR_INVALID_WINDOW_HANDLE
},
{
"ERROR_SEEK"
,
0xc0010000
|
ERROR_SEEK
},
{
"FILE_IS_A_DIRECTORY"
,
STATUS_FILE_IS_A_DIRECTORY
},
{
"FILE_LOCK_CONFLICT"
,
STATUS_FILE_LOCK_CONFLICT
},
{
"HANDLES_CLOSED"
,
STATUS_HANDLES_CLOSED
},
...
...
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