mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
update archive/tar patch for go 1.16
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
ae5ddd257c
commit
f400e84a43
1 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ index 868105f338..9640ed4bab 100644
|
|||
@@ -8,10 +8,7 @@ package tar
|
||||
|
||||
import (
|
||||
"os"
|
||||
"io/fs"
|
||||
- "os/user"
|
||||
"runtime"
|
||||
- "strconv"
|
||||
|
@ -39,7 +39,7 @@ index 868105f338..9640ed4bab 100644
|
|||
-// The downside is that renaming uname or gname by the OS never takes effect.
|
||||
-var userMap, groupMap sync.Map // map[int]string
|
||||
-
|
||||
func statUnix(fi os.FileInfo, h *Header) error {
|
||||
func statUnix(fi fs.FileInfo, h *Header) error {
|
||||
sys, ok := fi.Sys().(*syscall.Stat_t)
|
||||
if !ok {
|
||||
@@ -31,22 +24,9 @@ func statUnix(fi os.FileInfo, h *Header) error {
|
||||
|
|
Loading…
Reference in a new issue