From 1d3118b86439260dc58d8909a9e5c8c5c6f9f6ac Mon Sep 17 00:00:00 2001 From: Patrick Seeburger Date: Mon, 4 Feb 2019 15:48:24 +0100 Subject: [PATCH] Added missing default value (imported). --- bird/parser.go | 1 + 1 file changed, 1 insertion(+) diff --git a/bird/parser.go b/bird/parser.go index 717922a..92d3f6a 100644 --- a/bird/parser.go +++ b/bird/parser.go @@ -542,6 +542,7 @@ func parseProtocol(lines string) Parsed { routes := Parsed{} routes["accepted"] = int64(0) routes["filtered"] = int64(0) + routes["imported"] = int64(0) routes["exported"] = int64(0) routes["preferred"] = int64(0)