From 87de165cec1a67032c2b0e69cf2219b1c7aa5ef2 Mon Sep 17 00:00:00 2001 From: George Harvey <11440490+HarvsG@users.noreply.github.com> Date: Tue, 6 Apr 2021 15:40:23 +0100 Subject: [PATCH] function should take value not pointers --- wgsd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgsd.go b/wgsd.go index c92f199..3e36d25 100644 --- a/wgsd.go +++ b/wgsd.go @@ -181,7 +181,7 @@ func getSelfPeer(zone *Zone, device *wgtypes.Device, state request.Request) (wgt // takes a list of IPNets e.g "192.168.0.2/32" and // and the total number of addresses exposed float64 // assumed that the networks do not overlap -func networkSizes(ips []*net.IPNet) float64 { +func networkSizes(ips []net.IPNet) float64 { var tot float64 for _, ip := range ips { ones, bits := ip.Mask.Size()