diff --git a/bgpd/rfapi/rfapi_rib.c b/bgpd/rfapi/rfapi_rib.c index 53e416b2eef1..3bb18c539eab 100644 --- a/bgpd/rfapi/rfapi_rib.c +++ b/bgpd/rfapi/rfapi_rib.c @@ -1797,7 +1797,7 @@ int rfapiRibFTDFilterRecentPrefix( * check this NVE's timestamp for this prefix */ trn = agg_node_get(rfd->rsp_times[afi], p); /* locks trn */ - prefix_time = (time_t)trn->info; + prefix_time = *(time_t *)trn->info; if (agg_node_get_lock_count(trn) > 1) agg_unlock_node(trn);