github.com/mizzy/docker@v1.5.0/pkg/archive/archive_windows.go (about) 1 // +build windows 2 3 package archive 4 5 import ( 6 "github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar" 7 ) 8 9 func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (nlink uint32, inode uint64, err error) { 10 // do nothing. no notion of Rdev, Inode, Nlink in stat on Windows 11 return 12 }