Commit 0e4e2a37 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

wininet: More completely implement querying INTERNET_OPTION_SECURITY_FLAGS.

parent 6808c1c6
......@@ -1701,7 +1701,8 @@ static DWORD HTTPREQ_QueryOption(object_header_t *hdr, DWORD option, void *buffe
*(DWORD*)buffer = SECURITY_FLAG_SECURE;
else
*(DWORD*)buffer = 0;
FIXME("Semi-STUB INTERNET_OPTION_SECURITY_FLAGS: %x\n",*(DWORD*)buffer);
*(DWORD *)buffer |= req->netConnection.security_flags;
/* FIXME: set connection cipher strength (SECURITY_FLAG_STRENGTH_*) */
return ERROR_SUCCESS;
}
......
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