Commit 20a8f4ae authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix missed case of neighbour id check.

parent 8e4f0633
......@@ -939,7 +939,7 @@ send_ihu(struct neighbour *neigh, struct network *net)
if(neigh == NULL) {
for(i = 0; i < numneighs; i++) {
if(neighs[i].id[0] != 0xFF) {
if(neighs[i].hello_seqno != -2) {
if(neighs[i].network == net)
send_ihu(&neighs[i], net);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment