From 46210b0c48a0820865e12db31b4e1d36fd607d80 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 21 Mar 2019 19:48:06 -0700 Subject: [PATCH] tst: passthrough-dotnet: fix compilation problem --- tst/passthrough-dotnet/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tst/passthrough-dotnet/Program.cs b/tst/passthrough-dotnet/Program.cs index 3d3521e0..43ad156a 100644 --- a/tst/passthrough-dotnet/Program.cs +++ b/tst/passthrough-dotnet/Program.cs @@ -78,6 +78,7 @@ namespace passthrough FileInfo.ChangeTime = FileInfo.LastWriteTime; FileInfo.IndexNumber = 0; FileInfo.HardLinks = 0; + FileInfo.EaSize = 0; } public Int32 GetFileInfo(out FileInfo FileInfo) { @@ -98,6 +99,7 @@ namespace passthrough FileInfo.ChangeTime = FileInfo.LastWriteTime; FileInfo.IndexNumber = 0; FileInfo.HardLinks = 0; + FileInfo.EaSize = 0; } else GetFileInfoFromFileSystemInfo(DirInfo, out FileInfo);