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:
parent
041c0705e4
commit
8c8a066c0e
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue