https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=221379
--- Comment #3 from Nils Steinger <nrg_freebsd-b...@voidptr.de> --- And then… *Same issue with IPv6:* `netconfig_ipv6` has the exact same problem and should receive similar treatment. However, my solution for IPv4 can't be applied verbatim because awk loses accuracy when going up to 2^64: % awk 'BEGIN {print(2^64)}' 18446744073709551616 % awk 'BEGIN {print(2^64-1)}' 18446744073709551616 % awk 'BEGIN {print(2^64-1000)}' 18446744073709551616 So we would have to find another way to to subnet parsing for IPv6. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"