github.com/ncdc/docker@v0.10.1-0.20160129113957-6c6729ef5b74/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  }