1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-01-03 05:35:43 +00:00

Correct the bitmask for fileSupportsExtendedAttributes and add link

This commit is contained in:
aneesh-n 2024-08-03 18:06:47 -06:00
parent 041c0705e4
commit 8c8a066c0e
No known key found for this signature in database
GPG key ID: 6F5A52831C046F44

View file

@ -61,7 +61,8 @@ var (
const (
// fileSupportsExtendedAttributes is a bitmask that indicates whether the file system supports extended attributes.
fileSupportsExtendedAttributes = 0x00000004
// https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/ntifs/ns-ntifs-_file_fs_attribute_information
fileSupportsExtendedAttributes = 0x00800000
)
// ExtendedAttribute represents a single Windows EA.