diff options
Diffstat (limited to 'nest/iface.c')
-rw-r--r-- | nest/iface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nest/iface.c b/nest/iface.c index 01b1aa48..dbc4debe 100644 --- a/nest/iface.c +++ b/nest/iface.c @@ -145,9 +145,9 @@ ifa_send_notify(struct proto *p, unsigned c, struct ifa *a) if (p->ifa_notify && (p->proto_state != PS_DOWN)) { if (p->debug & D_IFACES) - log(L_TRACE "%s < %s address %N on interface %s %s", - p->name, (a->flags & IA_PRIMARY) ? "primary" : "secondary", - &a->prefix, a->iface->name, (c & IF_CHANGE_UP) ? "added" : "removed"); + log(L_TRACE "%s < address %N on interface %s %s", + p->name, &a->prefix, a->iface->name, + (c & IF_CHANGE_UP) ? "added" : "removed"); p->ifa_notify(p, c, a); } } |