mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Do not skip entries without LLE_VALID flag.
This one fixes showing incomplete entries in ndp -an. MFC after: 2 weeks
This commit is contained in:
parent
91bfd68e38
commit
deeedaa549
1 changed files with 2 additions and 2 deletions
|
|
@ -2313,8 +2313,8 @@ in6_lltable_dump_entry(struct lltable *llt, struct llentry *lle,
|
|||
int error;
|
||||
|
||||
bzero(&ndpc, sizeof(ndpc));
|
||||
/* skip invalid entries */
|
||||
if ((lle->la_flags & (LLE_DELETED|LLE_VALID)) != LLE_VALID)
|
||||
/* skip deleted entries */
|
||||
if ((lle->la_flags & LLE_DELETED) == LLE_DELETED)
|
||||
return (0);
|
||||
/* Skip if jailed and not a valid IP of the prison. */
|
||||
lltable_fill_sa_entry(lle,
|
||||
|
|
|
|||
Loading…
Reference in a new issue