Codebase list golang-github-vbatts-go-mtree / lintian-fixes/main updatefuncs_unsupported.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

updatefuncs_unsupported.go @lintian-fixes/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
	return os.Lstat(path)
}