summaryrefslogtreecommitdiff
path: root/proto/rip
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2022-06-27 12:14:05 +0200
committerMaria Matejka <mq@ucw.cz>2022-06-27 12:32:47 +0200
commitd2142ad4050c64991f856734bafadd527c28e74b (patch)
treea5232767df4e66a556ffabc7b24aee867e76c0f6 /proto/rip
parent0f2f5ac58c8bc487ad62d153bfc5ebdb97d54fbd (diff)
Fixed displaying BGP and RIP attributes after recent reworks
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c2
1 files changed, 1 insertions, 1 deletions
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 = {