winhttp: Add a fixme for WINHTTP_OPTION_SECURITY_FLAGS.

This commit is contained in:
Juan Lang 2009-09-02 08:26:20 -07:00 committed by Alexandre Julliard
parent 4700038fdf
commit 1dc145d05f
1 changed files with 4 additions and 0 deletions

View File

@ -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 );