Module: wine Branch: master Commit: 293c53e22f14e3016e88f7fff26e2c954f99c3d2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=293c53e22f14e3016e88f7fff2...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Apr 16 12:40:08 2014 +0200
secur32: Fixed schannel tests on Windows 8.1.
---
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 fa61f4a..078aec7 100644 --- a/dlls/secur32/tests/schannel.c +++ b/dlls/secur32/tests/schannel.c @@ -809,7 +809,8 @@ todo_wine status = pQueryContextAttributesA(&context, SECPKG_ATTR_CONNECTION_INFO, (void*)&conn_info); ok(status == SEC_E_OK, "QueryContextAttributesW(SECPKG_ATTR_CONNECTION_INFO) failed: %08x\n", status); if(status == SEC_E_OK) { - ok(conn_info.dwCipherStrength == 128, "conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength); + ok(conn_info.dwCipherStrength == 128 || conn_info.dwCipherStrength == 168, + "conn_info.dwCipherStrength = %d\n", conn_info.dwCipherStrength); ok(conn_info.dwHashStrength >= 128, "conn_info.dwHashStrength = %d\n", conn_info.dwHashStrength); }