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
53dbffd3
Commit
53dbffd3
authored
Jun 12, 2015
by
Huw Davies
Committed by
Alexandre Julliard
Jun 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Fix tests on Win 2k.
parent
c69ac672
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
http.c
dlls/wininet/tests/http.c
+8
-1
No files found.
dlls/wininet/tests/http.c
View file @
53dbffd3
...
...
@@ -4838,7 +4838,13 @@ static void test_secure_connection(void)
ok
(
req
!=
NULL
,
"HttpOpenRequest failed
\n
"
);
ret
=
HttpSendRequestA
(
req
,
NULL
,
0
,
NULL
,
0
);
ok
(
ret
,
"HttpSendRequest failed: %d
\n
"
,
GetLastError
());
ok
(
ret
||
broken
(
GetLastError
()
==
ERROR_INTERNET_CANNOT_CONNECT
),
"HttpSendRequest failed: %d
\n
"
,
GetLastError
());
if
(
!
ret
)
{
win_skip
(
"Cannot connect to https.
\n
"
);
goto
done
;
}
size
=
sizeof
(
flags
);
ret
=
InternetQueryOptionA
(
req
,
INTERNET_OPTION_SECURITY_FLAGS
,
&
flags
,
&
size
);
...
...
@@ -4963,6 +4969,7 @@ static void test_secure_connection(void)
}
HeapFree
(
GetProcessHeap
(),
0
,
certificate_structW
);
done:
InternetCloseHandle
(
req
);
InternetCloseHandle
(
con
);
InternetCloseHandle
(
ses
);
...
...
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