From 56450e1b4fc9fcddfff369e2aeea4594cc50d9c2 Mon Sep 17 00:00:00 2001 From: Maycon Santos Date: Sun, 14 Apr 2024 16:39:30 +0200 Subject: [PATCH] Update client/internal/routemanager/systemops.go Co-authored-by: Viktor Liu --- client/internal/routemanager/systemops.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/routemanager/systemops.go b/client/internal/routemanager/systemops.go index ad7edd366..6c14fb775 100644 --- a/client/internal/routemanager/systemops.go +++ b/client/internal/routemanager/systemops.go @@ -256,7 +256,7 @@ func addNonExistingRoute(prefix netip.Prefix, intf string) error { return fmt.Errorf("exists in route table: %w", err) } if ok { - return fmt.Errorf("Skipping adding a new route for network %s because it already exists", prefix) + return fmt.Errorf("skipping adding a new route for network %s because it already exists", prefix) } ok, err = isSubRange(prefix)