[2/4] secur32/tests: Make sure that QueryContextAttributes(SECPKG_ATTR_STREAM_SIZES) succeeds.

Dmitry Timoshkov dmitry at baikal.ru
Wed Dec 11 02:14:51 CST 2013


---
 dlls/secur32/tests/schannel.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/secur32/tests/schannel.c b/dlls/secur32/tests/schannel.c
index a00c276..daac39f 100644
--- a/dlls/secur32/tests/schannel.c
+++ b/dlls/secur32/tests/schannel.c
@@ -804,7 +804,8 @@ todo_wine
         ok(conn_info.dwHashStrength >= 128, "conn_info.dwHashStrength = %d\n", conn_info.dwHashStrength);
     }
 
-    pQueryContextAttributesA(&context, SECPKG_ATTR_STREAM_SIZES, &sizes);
+    status = pQueryContextAttributesA(&context, SECPKG_ATTR_STREAM_SIZES, &sizes);
+    ok(status == SEC_E_OK, "QueryContextAttributesW(SECPKG_ATTR_STREAM_SIZES) failed: %08x\n", status);
 
     reset_buffers(&buffers[0]);
 
-- 
1.8.5.1




More information about the wine-patches mailing list