winhttp: Add a fixme for WINHTTP_OPTION_SECURITY_FLAGS

Juan Lang juan.lang at gmail.com
Tue Sep 8 11:39:05 CDT 2009


Another no-op patch that makes a fixme more informative.
--Juan
-------------- next part --------------
From 60e547d095a70a2af8c82a79fe76a7cac44e2e3a Mon Sep 17 00:00:00 2001
From: Juan Lang <juan.lang at gmail.com>
Date: Wed, 2 Sep 2009 08:26:20 -0700
Subject: [PATCH 3/3] Add a fixme for WINHTTP_OPTION_SECURITY_FLAGS

---
 dlls/winhttp/session.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/dlls/winhttp/session.c b/dlls/winhttp/session.c
index 7bc61a9..d5649ed 100644
--- a/dlls/winhttp/session.c
+++ b/dlls/winhttp/session.c
@@ -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 );
-- 
1.6.3.2


More information about the wine-patches mailing list