vendor: update go.podman.io/{common,image,storage}

Update to the latest tags to make sure they all work correctly.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
Paul Holzinger
2025-09-03 17:46:02 +02:00
parent 5e5f0a1dd2
commit dbfddb82cb
127 changed files with 1303 additions and 795 deletions

View File

@@ -5,7 +5,7 @@ import (
"strconv"
)
// ParseMTU parses the mtu option
// ParseMTU parses the mtu option.
func ParseMTU(mtu string) (int, error) {
if mtu == "" {
return 0, nil // default
@@ -20,7 +20,7 @@ func ParseMTU(mtu string) (int, error) {
return m, nil
}
// ParseVlan parses the vlan option
// ParseVlan parses the vlan option.
func ParseVlan(vlan string) (int, error) {
if vlan == "" {
return 0, nil // default
@@ -35,7 +35,7 @@ func ParseVlan(vlan string) (int, error) {
return v, nil
}
// ParseIsolate parses the isolate option
// ParseIsolate parses the isolate option.
func ParseIsolate(isolate string) (string, error) {
switch isolate {
case "":