From dca3cb93f32c3d19526607a613bc762ec8a658d8 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 2 Feb 2017 22:12:49 -0800 Subject: [PATCH] tst: winfsp-tests: getfileinfo_dotest: CREATE_ALWAYS instead of CREATE_NEW --- tst/winfsp-tests/info-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tst/winfsp-tests/info-test.c b/tst/winfsp-tests/info-test.c index bac1e962..d2092680 100644 --- a/tst/winfsp-tests/info-test.c +++ b/tst/winfsp-tests/info-test.c @@ -48,7 +48,7 @@ void getfileinfo_dotest(ULONG Flags, PWSTR Prefix, ULONG FileInfoTimeout) Handle = CreateFileW(FilePath, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, 0, - CREATE_NEW, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0); + CREATE_ALWAYS/*CREATE_NEW*/, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, 0); ASSERT(INVALID_HANDLE_VALUE != Handle); Success = GetFileInformationByHandleEx(Handle, FileAttributeTagInfo, &AttributeTagInfo, sizeof AttributeTagInfo);