From df62b94c258055d532036f4dea9e7bec98418b4a Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 17 Oct 2013 22:58:35 +0200 Subject: [PATCH] crypt32/tests: Compile with -D__WINESRC__. --- dlls/crypt32/tests/Makefile.in | 1 - dlls/crypt32/tests/encode.c | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dlls/crypt32/tests/Makefile.in b/dlls/crypt32/tests/Makefile.in index 8fdc7abfa33..1b8842b5024 100644 --- a/dlls/crypt32/tests/Makefile.in +++ b/dlls/crypt32/tests/Makefile.in @@ -1,6 +1,5 @@ TESTDLL = crypt32.dll IMPORTS = crypt32 advapi32 -EXTRADEFS = -U__WINESRC__ -DWINE_STRICT_PROTOTYPES -DWINE_NO_NAMELESS_EXTENSION -DWIDL_C_INLINE_WRAPPERS C_SRCS = \ base64.c \ diff --git a/dlls/crypt32/tests/encode.c b/dlls/crypt32/tests/encode.c index 5d9e76be04f..5d1b10d9197 100644 --- a/dlls/crypt32/tests/encode.c +++ b/dlls/crypt32/tests/encode.c @@ -8054,9 +8054,9 @@ static void testPortPublicKeyInfo(void) PCERT_PUBLIC_KEY_INFO info = NULL; /* Just in case a previous run failed, delete this thing */ - CryptAcquireContextA(&csp, cspName, MS_DEF_PROV, PROV_RSA_FULL, + CryptAcquireContextA(&csp, cspName, MS_DEF_PROV_A, PROV_RSA_FULL, CRYPT_DELETEKEYSET); - ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV, PROV_RSA_FULL, + ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV_A, PROV_RSA_FULL, CRYPT_NEWKEYSET); ok(ret,"CryptAcquireContextA failed\n"); @@ -8065,7 +8065,7 @@ static void testPortPublicKeyInfo(void) HeapFree(GetProcessHeap(), 0, info); CryptReleaseContext(csp, 0); - ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV, PROV_RSA_FULL, + ret = CryptAcquireContextA(&csp, cspName, MS_DEF_PROV_A, PROV_RSA_FULL, CRYPT_DELETEKEYSET); ok(ret,"CryptAcquireContextA failed\n"); } -- 2.11.4.GIT