mirror of
https://github.com/containers/podman.git
synced 2025-11-29 09:37:38 +08:00
13 lines
237 B
Go
13 lines
237 B
Go
package tarheader
|
|
|
|
import (
|
|
"archive/tar"
|
|
"os"
|
|
)
|
|
|
|
// sysStat populates hdr from system-dependent fields of fi without performing
|
|
// any OS lookups. It is a no-op on Windows.
|
|
func sysStat(os.FileInfo, *tar.Header) error {
|
|
return nil
|
|
}
|