Skip to content

Commit

Permalink
implement GetFSType on openbsd with the correct statfs struct member (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rnagy authored Aug 27, 2024
1 parent c4431b6 commit 27559d6
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/types/getfstype.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build !windows && !freebsd
//go:build !windows && !freebsd && !openbsd

package types

Expand Down
25 changes: 25 additions & 0 deletions pkg/types/getfstype_openbsd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
//go:build openbsd

package types

import (
"fmt"
"syscall"
)

func GetFSType(path string) (string, error) {
var fsStat syscall.Statfs_t

if err := syscall.Statfs(path, &fsStat); err != nil {
return "", fmt.Errorf("failed to get filesystem type: %w", err)
}

bs := fsStat.F_fstypename

b := make([]byte, len(bs))
for i, v := range bs {
b[i] = byte(v)
}

return string(b), nil
}

0 comments on commit 27559d6

Please sign in to comment.