summaryrefslogtreecommitdiff
path: root/plugins/meta/dnsname/result.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/meta/dnsname/result.go')
-rw-r--r--plugins/meta/dnsname/result.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/meta/dnsname/result.go b/plugins/meta/dnsname/result.go
index b2e78a1..3d46029 100644
--- a/plugins/meta/dnsname/result.go
+++ b/plugins/meta/dnsname/result.go
@@ -1,10 +1,10 @@
package main
import (
- "fmt"
"net"
"github.com/containernetworking/cni/pkg/types/current"
+ "github.com/pkg/errors"
)
// getIPs iterates a result and returns all the IP addresses
@@ -24,7 +24,7 @@ func getIPs(r *current.Result) ([]*net.IPNet, error) {
if isInterfaceIndexSandox(*ip.Interface, r) {
ips = append(ips, &ip.Address)
} else {
- return nil, fmt.Errorf("unable to check if interface has a sandbox due to index being out of range")
+ return nil, errors.Errorf("unable to check if interface has a sandbox due to index being out of range")
}
}
}