github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/volume/store/store_unix.go (about) 1 // +build linux freebsd 2 3 package store 4 5 // normaliseVolumeName is a platform specific function to normalise the name 6 // of a volume. This is a no-op on Unix-like platforms 7 func normaliseVolumeName(name string) string { 8 return name 9 }