diff options
author | Ondrej Filip <feela@network.cz> | 2000-04-18 21:56:43 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-04-18 21:56:43 +0200 |
commit | 48f5a61f694faceb7cdc41e291f0da9411000c45 (patch) | |
tree | 44d7cdcbeae95aaa207ae63adffef6087a582ea7 /proto/ospf/neighbor.c | |
parent | 9eada7ca03c6c4111e759b0910a1a654a7f3216e (diff) | |
download | bird-48f5a61f694faceb7cdc41e291f0da9411000c45.tar bird-48f5a61f694faceb7cdc41e291f0da9411000c45.zip |
Bugfix in neighbor dumping.
Diffstat (limited to 'proto/ospf/neighbor.c')
-rw-r--r-- | proto/ospf/neighbor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index 4565d4e..9f3f268 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -27,7 +27,7 @@ neigh_chstate(struct ospf_neighbor *n, u8 state) ifa=n->ifa; p=(struct proto *)(ifa->proto); - debug("%s: Neigbor %I changes state from \"%u\" to \"%u\".\n", + debug("%s: Neigbor %I changes state from \"%s\" to \"%s\".\n", p->name, n->rid, ospf_ns[n->state], ospf_ns[state]); n->state=state; } |