aboutsummaryrefslogtreecommitdiff
path: root/libpod/network/cni/run.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-11-03 17:15:46 +0100
committerGitHub <noreply@github.com>2021-11-03 17:15:46 +0100
commit4105b025d60dd6d067fa293de11c45dcfd7ea30e (patch)
tree8e5f61e3adc5cb03d57a71a1998999d9d7587bb4 /libpod/network/cni/run.go
parenta245da1e52b63c451f4683f7a9b225aa49521939 (diff)
parent001d48929dcbe4f3a8eeb3db2a7bfdce5a90f81a (diff)
downloadpodman-4105b025d60dd6d067fa293de11c45dcfd7ea30e.tar.gz
podman-4105b025d60dd6d067fa293de11c45dcfd7ea30e.tar.bz2
podman-4105b025d60dd6d067fa293de11c45dcfd7ea30e.zip
Merge pull request #12166 from Luap99/mac
MAC address json unmarshal should allow strings
Diffstat (limited to 'libpod/network/cni/run.go')
-rw-r--r--libpod/network/cni/run.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/network/cni/run.go b/libpod/network/cni/run.go
index 99b2adce5..7795dfeeb 100644
--- a/libpod/network/cni/run.go
+++ b/libpod/network/cni/run.go
@@ -160,7 +160,7 @@ func CNIResultToStatus(res cnitypes.Result) (types.StatusBlock, error) {
return result, err
}
interfaces[cniInt.Name] = types.NetInterface{
- MacAddress: mac,
+ MacAddress: types.HardwareAddr(mac),
Networks: []types.NetAddress{{
Subnet: types.IPNet{IPNet: ip.Address},
Gateway: ip.Gateway,