summaryrefslogtreecommitdiff
path: root/lib/btrfs/btrfsitem
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2022-12-30 22:17:06 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2022-12-30 22:17:06 -0700
commit9971e38110d5f90d15c7b78f396f2638b3952a96 (patch)
tree28692225122d6d9c91d826801a4986d1c850744d /lib/btrfs/btrfsitem
parentbfe111c950da328b673ed4e3f8da0503bbd793d8 (diff)
parent3d0937e9ab148c074922b0d46ed33bdbcbef85b5 (diff)
Merge branch 'lukeshu/log'
Diffstat (limited to 'lib/btrfs/btrfsitem')
-rw-r--r--lib/btrfs/btrfsitem/item_dir.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/btrfs/btrfsitem/item_dir.go b/lib/btrfs/btrfsitem/item_dir.go
index 836c477..b3e33f4 100644
--- a/lib/btrfs/btrfsitem/item_dir.go
+++ b/lib/btrfs/btrfsitem/item_dir.go
@@ -30,7 +30,7 @@ type DirEntry struct { // DIR_ITEM=84 DIR_INDEX=96 XATTR_ITEM=24
NameLen uint16 `bin:"off=0x1b, siz=2"` // [ignored-when-writing]
Type FileType `bin:"off=0x1d, siz=1"`
binstruct.End `bin:"off=0x1e"`
- Data []byte `bin:"-"`
+ Data []byte `bin:"-"` // xattr value (only for XATTR_ITEM)
Name []byte `bin:"-"`
}