From 38c8261135a337ca6e6ebcb6c85395d7c7370c27 Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Tue, 10 Feb 2009 11:07:37 -0800 Subject: [PATCH] crypt32: Fix a test failure on Windows 98. --- dlls/crypt32/tests/ctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/crypt32/tests/ctl.c b/dlls/crypt32/tests/ctl.c index 2b65ab21275..fea7b979728 100644 --- a/dlls/crypt32/tests/ctl.c +++ b/dlls/crypt32/tests/ctl.c @@ -146,7 +146,8 @@ static void testCreateCTL(void) sizeof(ctlWithOneEntry)); ok((!ctl && (GetLastError() == ERROR_INVALID_DATA || - GetLastError() == CRYPT_E_UNEXPECTED_MSG_TYPE /* win9x */)) || + GetLastError() == CRYPT_E_UNEXPECTED_MSG_TYPE /* win9x */ || + GetLastError() == OSS_DATA_ERROR /* some win98 */)) || broken(ctl != NULL /* some win98 */), "expected ERROR_INVALID_DATA, got %d (0x%08x)\n", GetLastError(), GetLastError()); -- 2.11.4.GIT