Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b2c809a3
Commit
b2c809a3
authored
Feb 28, 2017
by
Bruno Jesus
Committed by
Alexandre Julliard
Feb 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Make it clear that bit flags are in hex when tracing.
Signed-off-by:
Bruno Jesus
<
bjesus@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0dd43e9b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
socket.c
dlls/ws2_32/socket.c
+4
-4
No files found.
dlls/ws2_32/socket.c
View file @
b2c809a3
...
@@ -6540,7 +6540,7 @@ static int convert_aiflag_w2u(int winflags) {
...
@@ -6540,7 +6540,7 @@ static int convert_aiflag_w2u(int winflags) {
winflags
&=
~
ws_aiflag_map
[
i
][
0
];
winflags
&=
~
ws_aiflag_map
[
i
][
0
];
}
}
if
(
winflags
)
if
(
winflags
)
FIXME
(
"Unhandled windows AI_xxx flags %x
\n
"
,
winflags
);
FIXME
(
"Unhandled windows AI_xxx flags
0x
%x
\n
"
,
winflags
);
return
unixflags
;
return
unixflags
;
}
}
...
@@ -6554,7 +6554,7 @@ static int convert_niflag_w2u(int winflags) {
...
@@ -6554,7 +6554,7 @@ static int convert_niflag_w2u(int winflags) {
winflags
&=
~
ws_niflag_map
[
i
][
0
];
winflags
&=
~
ws_niflag_map
[
i
][
0
];
}
}
if
(
winflags
)
if
(
winflags
)
FIXME
(
"Unhandled windows NI_xxx flags %x
\n
"
,
winflags
);
FIXME
(
"Unhandled windows NI_xxx flags
0x
%x
\n
"
,
winflags
);
return
unixflags
;
return
unixflags
;
}
}
...
@@ -6567,8 +6567,8 @@ static int convert_aiflag_u2w(int unixflags) {
...
@@ -6567,8 +6567,8 @@ static int convert_aiflag_u2w(int unixflags) {
winflags
|=
ws_aiflag_map
[
i
][
0
];
winflags
|=
ws_aiflag_map
[
i
][
0
];
unixflags
&=
~
ws_aiflag_map
[
i
][
1
];
unixflags
&=
~
ws_aiflag_map
[
i
][
1
];
}
}
if
(
unixflags
)
/* will warn usually */
if
(
unixflags
)
WARN
(
"Unhandled UNIX AI_xxx flags %x
\n
"
,
unixflags
);
WARN
(
"Unhandled UNIX AI_xxx flags
0x
%x
\n
"
,
unixflags
);
return
winflags
;
return
winflags
;
}
}
...
...
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