diff options
author | Ondrej Filip <feela@network.cz> | 2012-05-15 23:40:37 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2012-05-15 23:40:37 +0200 |
commit | 3fe1d9e4a40663b93b59f5b6f9d61af9dc6a8ae6 (patch) | |
tree | b30ffa4a722d776714cfe979090ee15e5cd74376 /proto/rip/rip.c | |
parent | 72b2db8db7534c52e928618410ec1f18787752c8 (diff) | |
parent | 95127cbbb76e8870e029454a5313bc4b6ce69a4a (diff) |
Merge branch 'master' of ssh://git.nic.cz/bird
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r-- | proto/rip/rip.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c index b41c3f8d..281296a5 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -624,7 +624,6 @@ rip_dump(struct proto *p) int i; node *w; struct rip_interface *rif; - i = 0; CHK_MAGIC; WALK_LIST( w, P->connections ) { @@ -995,8 +994,8 @@ static int rip_get_attr(eattr *a, byte *buf, int buflen UNUSED) { switch (a->id) { - case EA_RIP_METRIC: buf += bsprintf( buf, "metric: %d", a->u.data ); return GA_FULL; - case EA_RIP_TAG: buf += bsprintf( buf, "tag: %d", a->u.data ); return GA_FULL; + case EA_RIP_METRIC: bsprintf( buf, "metric: %d", a->u.data ); return GA_FULL; + case EA_RIP_TAG: bsprintf( buf, "tag: %d", a->u.data ); return GA_FULL; default: return GA_UNKNOWN; } } |