Skip to content

Commit

Permalink
Mirror - change file system name to NTFS
Browse files Browse the repository at this point in the history
This will fix socket creation failed dokan-dev/dokany#92
  • Loading branch information
Liryna committed May 18, 2016
1 parent f72cd7d commit ed41f46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sample/DokanNetMirror/Mirror.cs
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ public NtStatus GetVolumeInformation(out string volumeLabel, out FileSystemFeatu
out string fileSystemName, DokanFileInfo info)
{
volumeLabel = "DOKAN";
fileSystemName = "DOKAN";
fileSystemName = "NTFS";

features = FileSystemFeatures.CasePreservedNames | FileSystemFeatures.CaseSensitiveSearch |
FileSystemFeatures.PersistentAcls | FileSystemFeatures.SupportsRemoteStorage |
Expand Down Expand Up @@ -611,4 +611,4 @@ public NtStatus FindFilesWithPattern(string fileName, string searchPattern, out

#endregion Implementation of IDokanOperations
}
}
}

0 comments on commit ed41f46

Please sign in to comment.