diff options
author | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-06-04 12:58:16 -0400 |
---|---|---|
committer | TomSweeneyRedHat <tsweeney@redhat.com> | 2019-06-04 13:05:19 -0400 |
commit | 14ec550ec34e8e5914adf4ae9d1723e8a404bd38 (patch) | |
tree | 593e8326ae90a60c3293d9b4addcd4e30ce10e16 /cmd | |
parent | 7b0d6fcf0e3ce59f842273f670d742aaf597bf2f (diff) | |
download | podman-14ec550ec34e8e5914adf4ae9d1723e8a404bd38.tar.gz podman-14ec550ec34e8e5914adf4ae9d1723e8a404bd38.tar.bz2 podman-14ec550ec34e8e5914adf4ae9d1723e8a404bd38.zip |
Vendor Buildah v1.8.3
Vendor in Buildah v1.8.3
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/cp.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/cp.go b/cmd/podman/cp.go index 907bde4b9..2e2ca272a 100644 --- a/cmd/podman/cp.go +++ b/cmd/podman/cp.go @@ -211,7 +211,7 @@ func copyBetweenHostAndContainer(runtime *libpod.Runtime, src string, dest strin } func getUser(mountPoint string, userspec string) (specs.User, error) { - uid, gid, err := chrootuser.GetUser(mountPoint, userspec) + uid, gid, _, err := chrootuser.GetUser(mountPoint, userspec) u := specs.User{ UID: uid, GID: gid, |