summaryrefslogtreecommitdiff
path: root/vendor/github.com/containernetworking/cni/libcni/conf.go
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-04-28 12:09:13 +0000
committerGitHub <noreply@github.com>2022-04-28 12:09:13 +0000
commit589e42c9906fc01767bbeecea46f9ff3dd20dc75 (patch)
treeffcb58cdb45b8f02fa059579aa58e137d3b0046e /vendor/github.com/containernetworking/cni/libcni/conf.go
parent2b8cafc0671fbbd155770f044b8216f050877192 (diff)
downloadpodman-589e42c9906fc01767bbeecea46f9ff3dd20dc75.tar.gz
podman-589e42c9906fc01767bbeecea46f9ff3dd20dc75.tar.bz2
podman-589e42c9906fc01767bbeecea46f9ff3dd20dc75.zip
Bump github.com/containernetworking/cni from 1.0.1 to 1.1.0
Bumps [github.com/containernetworking/cni](https://github.com/containernetworking/cni) from 1.0.1 to 1.1.0. - [Release notes](https://github.com/containernetworking/cni/releases) - [Commits](https://github.com/containernetworking/cni/compare/v1.0.1...v1.1.0) --- updated-dependencies: - dependency-name: github.com/containernetworking/cni dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/containernetworking/cni/libcni/conf.go')
-rw-r--r--vendor/github.com/containernetworking/cni/libcni/conf.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/vendor/github.com/containernetworking/cni/libcni/conf.go b/vendor/github.com/containernetworking/cni/libcni/conf.go
index d28135ff3..3cd6a59d1 100644
--- a/vendor/github.com/containernetworking/cni/libcni/conf.go
+++ b/vendor/github.com/containernetworking/cni/libcni/conf.go
@@ -21,6 +21,8 @@ import (
"os"
"path/filepath"
"sort"
+
+ "github.com/containernetworking/cni/pkg/types"
)
type NotFoundError struct {
@@ -41,8 +43,8 @@ func (e NoConfigsFoundError) Error() string {
}
func ConfFromBytes(bytes []byte) (*NetworkConfig, error) {
- conf := &NetworkConfig{Bytes: bytes}
- if err := json.Unmarshal(bytes, &conf.Network); err != nil {
+ conf := &NetworkConfig{Bytes: bytes, Network: &types.NetConf{}}
+ if err := json.Unmarshal(bytes, conf.Network); err != nil {
return nil, fmt.Errorf("error parsing configuration: %w", err)
}
if conf.Network.Type == "" {