aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/vfs/mangle.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/vfs/mangle.go')
-rw-r--r--container/vfs/mangle.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/container/vfs/mangle.go b/container/vfs/mangle.go
index 83aba589..af7a0463 100644
--- a/container/vfs/mangle.go
+++ b/container/vfs/mangle.go
@@ -2,6 +2,8 @@ package vfs
import "strings"
+// Unmangle reverses mangling of strings done by the kernel. Its behaviour is
+// consistent with the equivalent function in util-linux.
func Unmangle(s string) string {
if !strings.ContainsRune(s, '\\') {
return s