mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 16:48:43 +00:00
Fixed one warning and one undefined value.
This commit is contained in:
parent
2ab680c697
commit
7078aa63ae
@ -1576,7 +1576,7 @@ rte_update2(struct channel *c, const net_addr *n, rte *new, struct rte_src *src)
|
|||||||
}
|
}
|
||||||
else if (filter)
|
else if (filter)
|
||||||
{
|
{
|
||||||
rta *old_attrs;
|
rta *old_attrs = NULL;
|
||||||
rte_make_tmp_attrs(&new, rte_update_pool, &old_attrs);
|
rte_make_tmp_attrs(&new, rte_update_pool, &old_attrs);
|
||||||
|
|
||||||
int fr = f_run(filter, &new, rte_update_pool, 0);
|
int fr = f_run(filter, &new, rte_update_pool, 0);
|
||||||
|
@ -132,7 +132,7 @@ times_init(struct timeloop *loop)
|
|||||||
if (rv < 0)
|
if (rv < 0)
|
||||||
die("Monotonic clock is missing");
|
die("Monotonic clock is missing");
|
||||||
|
|
||||||
if ((ts.tv_sec < 0) || (((s64) ts.tv_sec) > ((s64) 1 << 40)))
|
if ((ts.tv_sec < 0) || (((u64) ts.tv_sec) > ((u64) 1 << 40)))
|
||||||
log(L_WARN "Monotonic clock is crazy");
|
log(L_WARN "Monotonic clock is crazy");
|
||||||
|
|
||||||
loop->last_time = ts.tv_sec S + ts.tv_nsec NS;
|
loop->last_time = ts.tv_sec S + ts.tv_nsec NS;
|
||||||
|
Loading…
Reference in New Issue
Block a user