github.com/ssdev-go/moby@v17.12.1-ce-rc2+incompatible/volume/store/store_unix.go (about) 1 // +build linux freebsd 2 3 package store 4 5 // normalizeVolumeName is a platform specific function to normalize the name 6 // of a volume. This is a no-op on Unix-like platforms 7 func normalizeVolumeName(name string) string { 8 return name 9 }