Files
cgofuse/fuse/utils/fuse_netbsd.go
Matheus Sampaio Queiroga 6a99ef3fb4
All checks were successful
Fuse test / go-test (push) Successful in 34s
Fix freebsd fuse utils and add test to linux
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2025-08-03 20:53:23 -03:00

15 lines
219 B
Go

//go:build netbsd
package utils
import (
"syscall"
"sirherobrine23.com.br/Sirherobrine23/cgofuse/fuse"
)
func AppendStatFS(dst *fuse.Statfs_t, src *syscall.Statfs_t) {
*dst = fuse.Statfs_t{}
dst.Namemax = 255
}