diff options
-rw-r--r-- | filter/test.conf | 2 | ||||
-rw-r--r-- | proto/babel/babel.c | 1 | ||||
-rw-r--r-- | proto/rip/rip.c | 1 |
3 files changed, 2 insertions, 2 deletions
diff --git a/filter/test.conf b/filter/test.conf index 22f5dea3..9b24a408 100644 --- a/filter/test.conf +++ b/filter/test.conf @@ -1639,7 +1639,6 @@ bool t; igp_metric = 53; babel_metric = 64; t = defined(babel_router_id); - j = babel_seqno; bgp_origin = ORIGIN_IGP; bgp_path = +empty+; @@ -1665,7 +1664,6 @@ bool t; rip_metric = 2; rip_tag = 4; - t = defined(rip_from); krt_source = 17; krt_metric = 19; diff --git a/proto/babel/babel.c b/proto/babel/babel.c index 685bb122..a00be9a5 100644 --- a/proto/babel/babel.c +++ b/proto/babel/babel.c @@ -2100,6 +2100,7 @@ static struct ea_class ea_babel_seqno = { .name = "babel_seqno", .type = T_INT, .readonly = 1, + .hidden = 1, }; diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 183fc265..5981ffa7 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -1260,6 +1260,7 @@ static struct ea_class ea_rip_from = { .name = "rip_from", .type = T_IFACE, .readonly = 1, + .hidden = 1, }; void |