diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-03-17 21:34:55 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-03-17 21:34:55 -0400 |
| commit | bfc920192804b2ce65f8ea11331c2e1cd3568b8b (patch) | |
| tree | e514babe675a220c2a900f943c6bcc60e568db3f /pimd/pim_instance.c | |
| parent | 5d59e4084180d87f18fded71d25d96ad4774488d (diff) | |
pimd: Move some data tracking variables per VRF
There were a few more global variables that needed to be per
vrf. So move them over.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_instance.c')
| -rw-r--r-- | pimd/pim_instance.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c index 60a3308a00..ab4ffc26ae 100644 --- a/pimd/pim_instance.c +++ b/pimd/pim_instance.c @@ -119,6 +119,7 @@ static struct pim_instance *pim_instance_init(struct vrf *vrf) pim_upstream_init(pim); + pim->last_route_change_time = -1; return pim; } |
