summaryrefslogtreecommitdiff
path: root/cmd/podman/cp.go
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2019-06-04 12:58:16 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2019-06-04 13:05:19 -0400
commit14ec550ec34e8e5914adf4ae9d1723e8a404bd38 (patch)
tree593e8326ae90a60c3293d9b4addcd4e30ce10e16 /cmd/podman/cp.go
parent7b0d6fcf0e3ce59f842273f670d742aaf597bf2f (diff)
downloadpodman-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/podman/cp.go')
-rw-r--r--cmd/podman/cp.go2
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,