Update `remains' counter correctly.

This commit is contained in:
Martin Mares 2000-05-08 14:32:19 +00:00
parent d69e5ff2ad
commit 9ff8f334ed
2 changed files with 2 additions and 2 deletions

3
TODO
View file

@ -24,9 +24,8 @@ Core
- bgp: timing of updates?
- bgp: dump and get_route_info
- bgp: packet size limit in sending of withdrawals?
- proto: `Changed state to ...' message -> show internal states
- proto: Don't show repeated `Changed state to ...' messages if only internal states change
Documentation
~~~~~~~~~~~~~

View file

@ -62,6 +62,7 @@ bgp_encode_prefixes(struct bgp_proto *p, byte *w, struct bgp_bucket *buck, unsig
ipa_hton(a);
memcpy(w, &a, bytes);
w += bytes;
remains -= bytes;
rem_node(&px->bucket_node);
fib_delete(&p->prefix_fib, px);
}