mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
wininet: Hide GetCookie flag fixme for HTTPONLY cookies.
Signed-off-by: Tim Schumacher <timschumi@gmx.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
aa4ac3ad6c
commit
fb568344e6
1 changed files with 1 additions and 1 deletions
|
@ -733,7 +733,7 @@ BOOL WINAPI InternetGetCookieExW(LPCWSTR lpszUrl, LPCWSTR lpszCookieName,
|
|||
|
||||
TRACE("(%s, %s, %p, %p, %x, %p)\n", debugstr_w(lpszUrl),debugstr_w(lpszCookieName), lpCookieData, lpdwSize, flags, reserved);
|
||||
|
||||
if (flags)
|
||||
if (flags & ~INTERNET_COOKIE_HTTPONLY)
|
||||
FIXME("flags 0x%08x not supported\n", flags);
|
||||
|
||||
if (!lpszUrl)
|
||||
|
|
Loading…
Reference in a new issue