Commit d2a6231e authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo in send_ihu.

This never triggerred, since send_ihu is never called with no interface.
parent 11aa4429
......@@ -1639,8 +1639,7 @@ send_ihu(struct neighbour *neigh, struct interface *ifp)
struct interface *ifp_aux;
FOR_ALL_INTERFACES(ifp_aux) {
if(if_up(ifp_aux))
continue;
send_ihu(NULL, ifp_aux);
send_ihu(NULL, ifp_aux);
}
return;
}
......
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