Dmitry Timoshkov : secur32/tests: Make sure that QueryContextAttributes( SECPKG_ATTR_STREAM_SIZES) succeeds.
Module: wine Branch: master Commit: 476f57fd632110d53c501c15375120fdaf627733 URL: http://source.winehq.org/git/wine.git/?a=commit;h=476f57fd632110d53c501c1537... Author: Dmitry Timoshkov <dmitry(a)baikal.ru> Date: Thu Dec 12 14:12:13 2013 +0900 secur32/tests: Make sure that QueryContextAttributes(SECPKG_ATTR_STREAM_SIZES) succeeds. --- dlls/secur32/tests/schannel.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) 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]);
participants (1)
-
Alexandre Julliard