mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 08:41:16 -05: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
|
|
}
|