mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
c6950d2cb0
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
10 lines
147 B
Go
10 lines
147 B
Go
// +build dragonfly
|
|
|
|
package godirwalk
|
|
|
|
import "syscall"
|
|
|
|
func reclen(de *syscall.Dirent) uint64 {
|
|
return (16 + uint64(de.Namlen) + 1 + 7) &^ 7
|
|
}
|