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
66b075a0
Commit
66b075a0
authored
Jun 20, 2011
by
Jerome Leclanche
Committed by
Alexandre Julliard
Jun 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Fix a warning when compiling --without-openssl.
parent
f30616e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
net.c
dlls/winhttp/net.c
+2
-2
No files found.
dlls/winhttp/net.c
View file @
66b075a0
...
...
@@ -735,8 +735,6 @@ BOOL netconn_send( netconn_t *conn, const void *msg, size_t len, int flags, int
BOOL
netconn_recv
(
netconn_t
*
conn
,
void
*
buf
,
size_t
len
,
int
flags
,
int
*
recvd
)
{
int
ret
;
*
recvd
=
0
;
if
(
!
netconn_connected
(
conn
))
return
FALSE
;
if
(
!
len
)
return
TRUE
;
...
...
@@ -744,6 +742,8 @@ BOOL netconn_recv( netconn_t *conn, void *buf, size_t len, int flags, int *recvd
if
(
conn
->
secure
)
{
#ifdef SONAME_LIBSSL
int
ret
;
if
(
flags
&
~
(
MSG_PEEK
|
MSG_WAITALL
))
FIXME
(
"SSL_read does not support the following flags: %08x
\n
"
,
flags
);
...
...
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