From d2142ad4050c64991f856734bafadd527c28e74b Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Mon, 27 Jun 2022 12:14:05 +0200 Subject: Fixed displaying BGP and RIP attributes after recent reworks --- proto/rip/rip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proto/rip') diff --git a/proto/rip/rip.c b/proto/rip/rip.c index d6edac14..f5c01380 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -1240,7 +1240,7 @@ rip_get_route_info(rte *rte, byte *buf) static void rip_tag_format(const eattr *a, byte *buf, uint buflen) { - bsnprintf(buf, buflen, "tag: %04x", a->u.data); + bsnprintf(buf, buflen, "%04x", a->u.data); } static struct ea_class ea_rip_metric = { -- cgit v1.2.3