diff options
Diffstat (limited to 'nest/iface.c')
-rw-r--r-- | nest/iface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nest/iface.c b/nest/iface.c index a2746b1..be087ff 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -95,6 +95,7 @@ neigh_find(struct proto *p, ip_addr *a, unsigned flags) n->sibling = NULL; n->proto = p; n->data = NULL; + n->aux = 0; n->flags = flags; return n; } @@ -107,7 +108,7 @@ neigh_dump(neighbor *n) debug("%s ", n->iface->name); else debug("[] "); - debug("%s %p", n->proto->name, n->data); + debug("%s %p %08x", n->proto->name, n->data, n->aux); if (n->flags & NEF_STICKY) debug(" STICKY"); debug("\n"); |