Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 447d262

Browse files
Merge pull request #1939 from gmacario/fix-issue-1692
fix IPV6NetworkMaskPrefixLength value parsing
2 parents b818d3f + b01442c commit 447d262

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/virtualbox/network.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func listHostOnlyNetworks() (map[string]*hostOnlyNetwork, error) {
100100
case "IPV6Address":
101101
n.IPv6.IP = net.ParseIP(val)
102102
case "IPV6NetworkMaskPrefixLength":
103-
l, err := strconv.ParseUint(val, 10, 7)
103+
l, err := strconv.ParseUint(val, 10, 8)
104104
if err != nil {
105105
return nil, err
106106
}

0 commit comments

Comments
 (0)