Module: wine Branch: master Commit: 4d43d364e80326fa0bb571b6f0bb7ccb7e1a1a0d URL: http://source.winehq.org/git/wine.git/?a=commit;h=4d43d364e80326fa0bb571b6f0...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Wed Feb 18 12:25:21 2015 -0200
rsaenh/tests: Fix a copy & paste issue.
---
dlls/rsaenh/tests/rsaenh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/rsaenh/tests/rsaenh.c b/dlls/rsaenh/tests/rsaenh.c index 072f08a..da74ffb 100644 --- a/dlls/rsaenh/tests/rsaenh.c +++ b/dlls/rsaenh/tests/rsaenh.c @@ -1728,7 +1728,7 @@ static void test_rc4(void) dwLen = 0; result = CryptGetKeyParam(hKey, KP_SALT, NULL, &dwLen, 0); ok(result, "%08x\n", GetLastError()); - if (BASE_PROV || STRONG_PROV || nt4) + if (BASE_PROV || STRONG_PROV) ok(dwLen == 11, "expected salt length 11, got %d\n", dwLen); else ok(dwLen == 0 || broken(nt4 && dwLen == 11), "expected salt length 0, got %d\n", dwLen);