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
094cc84e
Commit
094cc84e
authored
Jun 02, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Fix a few typos.
parent
7b115811
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
http.c
dlls/wininet/tests/http.c
+3
-3
No files found.
dlls/wininet/tests/http.c
View file @
094cc84e
...
...
@@ -1111,7 +1111,7 @@ static void test_http_cache(void)
size
=
sizeof
(
url
);
ret
=
InternetQueryOptionA
(
request
,
INTERNET_OPTION_URL
,
url
,
&
size
);
ok
(
ret
,
"InternetQueryOptionA(INTERNET_OPTION_
url
) failed: %u
\n
"
,
GetLastError
());
ok
(
ret
,
"InternetQueryOptionA(INTERNET_OPTION_
URL
) failed: %u
\n
"
,
GetLastError
());
ok
(
!
strcmp
(
url
,
"http://test.winehq.org/hello.html"
),
"Wrong URL %s
\n
"
,
url
);
size
=
sizeof
(
file_name
);
...
...
@@ -1146,7 +1146,7 @@ static void test_http_cache(void)
file
=
CreateFile
(
file_name
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
todo_wine
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"C
reateFile succeeded
\n
"
);
todo_wine
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"C
ould not create file: %u
\n
"
,
GetLastError
()
);
CloseHandle
(
file
);
request
=
HttpOpenRequestA
(
connect
,
NULL
,
"/"
,
NULL
,
NULL
,
types
,
INTERNET_FLAG_NO_CACHE_WRITE
,
0
);
...
...
@@ -1167,7 +1167,7 @@ static void test_http_cache(void)
file
=
CreateFile
(
file_name
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
todo_wine
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"C
reateFile succeeded
\n
"
);
todo_wine
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"C
ould not create file: %u
\n
"
,
GetLastError
()
);
CloseHandle
(
file
);
ok
(
InternetCloseHandle
(
request
),
"Close request handle failed
\n
"
);
...
...
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