From c6e7558cdac3de639505cc249a5b871b2508e9fa Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Sat, 19 Sep 2009 09:34:07 +0200 Subject: [PATCH] msi/tests: Fix some test failures on Vista/W2K8. --- dlls/msi/tests/package.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index 5fb5b534314..55d9bb35b8f 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -746,7 +746,8 @@ static BOOL create_file_with_version(const CHAR *name, LONG ms, LONG ls) BOOL ret = FALSE; GetSystemDirectory(path, MAX_PATH); - lstrcatA(path, "\\kernel32.dll"); + /* Some dlls can't be updated on Vista/W2K8 */ + lstrcatA(path, "\\version.dll"); CopyFileA(path, name, FALSE);