Babel: Fix accidental bitwise or assignment
Fix an accidental bitwise or assignment that was supposed to be a comparison. Thanks to Toke Hoiland-Jorgensen for the patch.
This commit is contained in:
parent
185a0a51f8
commit
5ce7adfcf9
1 changed files with 1 additions and 1 deletions
|
@ -2145,7 +2145,7 @@ babel_rt_notify(struct proto *P, struct channel *c UNUSED, struct network *net,
|
||||||
e = babel_get_entry(p, net->n.addr);
|
e = babel_get_entry(p, net->n.addr);
|
||||||
|
|
||||||
/* Activate triggered updates */
|
/* Activate triggered updates */
|
||||||
if ((e->valid |= BABEL_ENTRY_VALID) ||
|
if ((e->valid != BABEL_ENTRY_VALID) ||
|
||||||
(e->router_id != rt_router_id))
|
(e->router_id != rt_router_id))
|
||||||
{
|
{
|
||||||
babel_trigger_update(p);
|
babel_trigger_update(p);
|
||||||
|
|
Loading…
Reference in a new issue