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
37431c5b
Commit
37431c5b
authored
Jun 30, 2012
by
Jaime Rave
Committed by
Alexandre Julliard
Jul 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Show discovery via DHCP not supported just one time.
parent
9e183990
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
session.c
dlls/winhttp/session.c
+5
-1
No files found.
dlls/winhttp/session.c
View file @
37431c5b
...
...
@@ -1194,7 +1194,11 @@ BOOL WINAPI WinHttpDetectAutoProxyConfigUrl( DWORD flags, LPWSTR *url )
set_last_error
(
ERROR_INVALID_PARAMETER
);
return
FALSE
;
}
if
(
flags
&
WINHTTP_AUTO_DETECT_TYPE_DHCP
)
FIXME
(
"discovery via DHCP not supported
\n
"
);
if
(
flags
&
WINHTTP_AUTO_DETECT_TYPE_DHCP
)
{
static
int
fixme_shown
;
if
(
!
fixme_shown
++
)
FIXME
(
"discovery via DHCP not supported
\n
"
);
}
if
(
flags
&
WINHTTP_AUTO_DETECT_TYPE_DNS_A
)
{
#ifdef HAVE_GETADDRINFO
...
...
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