aboutsummaryrefslogtreecommitdiff
path: root/internal/nametransform/longnames.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-11-28 23:09:47 +0100
committerJakob Unterwurzacher2016-11-28 23:09:47 +0100
commite3c5e3f1c8db31e62bbb781a238da4cf76ed1ffc (patch)
treedec82daa82539ea2d73dac82fd2cc1b9e2d4acdd /internal/nametransform/longnames.go
parenta66440c66816c919acfaa4cd079fe2fae7043294 (diff)
fusefronted: preserve owner for device nodes and sockets
https://github.com/rfjakob/gocryptfs/issues/64
Diffstat (limited to 'internal/nametransform/longnames.go')
-rw-r--r--internal/nametransform/longnames.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/nametransform/longnames.go b/internal/nametransform/longnames.go
index be00bb4..71a4c16 100644
--- a/internal/nametransform/longnames.go
+++ b/internal/nametransform/longnames.go
@@ -57,7 +57,8 @@ func NameType(cName string) int {
return LongNameContent
}
-// IsLongContent returns true if "cName" is the content store of a long name file.
+// IsLongContent returns true if "cName" is the content store of a long name
+// file (looks like "gocryptfs.longname.[sha256]").
func IsLongContent(cName string) bool {
return NameType(cName) == LongNameContent
}