diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-27 17:47:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 17:47:06 +0000 |
commit | ed2afb2059744defccd40894b5f23e3803f6b3c5 (patch) | |
tree | eb54b054713db16cb3ce6c147c54101db33cee7c /libpod/container_internal_linux.go | |
parent | c29c6adf968945461d090f2cafe68a3341817c0d (diff) | |
parent | 4c5788bac6d57ced3498ea54100c924592596dab (diff) | |
download | podman-ed2afb2059744defccd40894b5f23e3803f6b3c5.tar.gz podman-ed2afb2059744defccd40894b5f23e3803f6b3c5.tar.bz2 podman-ed2afb2059744defccd40894b5f23e3803f6b3c5.zip |
Merge pull request #14732 from dfr/criu
Add missing criu symbols to criu_unsupported.go
Diffstat (limited to 'libpod/container_internal_linux.go')
-rw-r--r-- | libpod/container_internal_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_internal_linux.go b/libpod/container_internal_linux.go index 10f4eeec1..0f4bf0f55 100644 --- a/libpod/container_internal_linux.go +++ b/libpod/container_internal_linux.go @@ -1142,7 +1142,7 @@ func (c *Container) addCheckpointImageMetadata(importBuilder *buildah.Builder) e return fmt.Errorf("getting host info: %v", err) } - criuVersion, err := criu.GetCriuVestion() + criuVersion, err := criu.GetCriuVersion() if err != nil { return fmt.Errorf("getting criu version: %v", err) } |