Commit 36f6387e authored by Bruno Jesus's avatar Bruno Jesus Committed by Alexandre Julliard

wininet: Forward InternetGetConnectedState to Ex function.

parent a3c9a268
......@@ -1182,11 +1182,7 @@ BOOL WINAPI InternetGetConnectedState(LPDWORD lpdwStatus, DWORD dwReserved)
{
TRACE("(%p, 0x%08x)\n", lpdwStatus, dwReserved);
if (lpdwStatus) {
WARN("always returning LAN connection.\n");
*lpdwStatus = INTERNET_CONNECTION_LAN;
}
return TRUE;
return InternetGetConnectedStateExW(lpdwStatus, NULL, 0, dwReserved);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment