Commit 967fcaaf authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix another instance of missed use of neigh->id[0].

parent 20a8f4ae
...@@ -897,7 +897,7 @@ dump_tables(FILE *out) ...@@ -897,7 +897,7 @@ dump_tables(FILE *out)
fprintf(out, "My id %s seqno %d\n", format_address(myid), myseqno); fprintf(out, "My id %s seqno %d\n", format_address(myid), myseqno);
for(i = 0; i < numneighs; i++) { for(i = 0; i < numneighs; i++) {
if(neighs[i].id[0] == 0xFF) if(neighs[i].hello_seqno == -2)
continue; continue;
fprintf(out, "Neighbour %s ", format_address(neighs[i].id)); fprintf(out, "Neighbour %s ", format_address(neighs[i].id));
fprintf(out, "at %s dev %s reach %04x rxcost %d txcost %d%s.\n", fprintf(out, "at %s dev %s reach %04x rxcost %d txcost %d%s.\n",
......
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