diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-12-20 10:45:33 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-01-04 12:23:39 -0500 |
| commit | 5b45753eff8c6c65393a54ecfdb36f31bb4b3bcc (patch) | |
| tree | 57a184f7413d36444047dc88c4a694852e6c9c4d /pimd/pim_upstream.c | |
| parent | 046b1aa7d45cc7dc05c09d599772cd1276fa379e (diff) | |
pimd: Convert qpim_t_periodic into the `struct pim_router` structure
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_upstream.c')
| -rw-r--r-- | pimd/pim_upstream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_upstream.c b/pimd/pim_upstream.c index 59a7e27cf2..8cb6c0c174 100644 --- a/pimd/pim_upstream.c +++ b/pimd/pim_upstream.c @@ -308,7 +308,7 @@ void join_timer_start(struct pim_upstream *up) if (PIM_DEBUG_PIM_EVENTS) { zlog_debug( "%s: starting %d sec timer for upstream (S,G)=%s", - __PRETTY_FUNCTION__, qpim_t_periodic, + __PRETTY_FUNCTION__, router->t_periodic, up->sg_str); } } @@ -318,7 +318,7 @@ void join_timer_start(struct pim_upstream *up) else { THREAD_OFF(up->t_join_timer); thread_add_timer(router->master, on_join_timer, up, - qpim_t_periodic, &up->t_join_timer); + router->t_periodic, &up->t_join_timer); } pim_jp_agg_upstream_verification(up, true); } |
