1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

bgp_get_status: If protocol is down, don't print BGP state.

This commit is contained in:
Martin Mares
2000-05-15 12:19:28 +00:00
parent cbfd671f11
commit f4ab231746
2 changed files with 5 additions and 6 deletions

View File

@@ -503,7 +503,10 @@ bgp_get_status(struct proto *P, byte *buf)
{
struct bgp_proto *p = (struct bgp_proto *) P;
strcpy(buf, bgp_state_names[MAX(p->incoming_conn.state, p->outgoing_conn.state)]);
if (P->proto_state == PS_DOWN)
buf[0] = 0;
else
strcpy(buf, bgp_state_names[MAX(p->incoming_conn.state, p->outgoing_conn.state)]);
}
static int