Commit 1dc145d0 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

winhttp: Add a fixme for WINHTTP_OPTION_SECURITY_FLAGS.

parent 4700038f
......@@ -581,6 +581,10 @@ static BOOL request_set_option( object_header_t *hdr, DWORD option, LPVOID buffe
hdr->redirect_policy = policy;
return TRUE;
}
case WINHTTP_OPTION_SECURITY_FLAGS:
FIXME("WINHTTP_OPTION_SECURITY_FLAGS unimplemented (%08x)\n",
*(DWORD *)buffer);
return TRUE;
default:
FIXME("unimplemented option %u\n", option);
set_last_error( ERROR_INVALID_PARAMETER );
......
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