diff options
author | pilot <pilot> | 2007-11-12 14:55:01 +0000 |
---|---|---|
committer | pilot <pilot> | 2007-11-12 14:55:01 +0000 |
commit | 440b3f3512e77b78224f2309b2d1013b0dddfa11 (patch) | |
tree | c9c33d3abc06936e45f5fda50690c7e9cc7f49bd /lib/linklist.c | |
parent | 504199a5ea02907c0fa5e9519d8816fcdddc28e9 (diff) | |
download | quagga-440b3f3512e77b78224f2309b2d1013b0dddfa11.tar.bz2 quagga-440b3f3512e77b78224f2309b2d1013b0dddfa11.tar.xz |
+ fixed bug #418 (changing address on an existing interface doesn't cause existing static routes to be revalidated)
Diffstat (limited to 'lib/linklist.c')
-rw-r--r-- | lib/linklist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/linklist.c b/lib/linklist.c index 11e16a8a..983da2d1 100644 --- a/lib/linklist.c +++ b/lib/linklist.c @@ -158,6 +158,7 @@ listnode_add_after (struct list *list, struct listnode *pp, void *val) pp->next = nn; } + list->count++; } |