Skip to content

Commit

Permalink
fix IPV6NetworkMaskPrefixLength value parsing boot2docker#347
Browse files Browse the repository at this point in the history
  • Loading branch information
aldafu committed Feb 27, 2015
1 parent 0a3a250 commit 941c70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualbox/hostonlynet.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func HostonlyNets() (map[string]*HostonlyNet, error) {
case "IPV6Address":
n.IPv6.IP = net.ParseIP(val)
case "IPV6NetworkMaskPrefixLength":
l, err := strconv.ParseUint(val, 10, 7)
l, err := strconv.ParseUint(val, 10, 8)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 941c70c

Please sign in to comment.