mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
13 lines
343 B
Go
13 lines
343 B
Go
|
// +build windows
|
||
|
|
||
|
package archive
|
||
|
|
||
|
import (
|
||
|
"github.com/docker/docker/vendor/src/code.google.com/p/go/src/pkg/archive/tar"
|
||
|
)
|
||
|
|
||
|
func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (nlink uint32, inode uint64, err error) {
|
||
|
// do nothing. no notion of Rdev, Inode, Nlink in stat on Windows
|
||
|
return
|
||
|
}
|