diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 17:41:09 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 17:41:09 +0100 |
commit | 4ff15a75c56531fa2d3858d8250dcef1af4e75b6 (patch) | |
tree | 8410799a1bf43210ac4fe600595488a2907149e2 /nest | |
parent | cd80c9b0700ef9533a19ab19d66c38a1722c4e08 (diff) | |
parent | 98bb80a243b58c43453e9be69d19d0350286549c (diff) |
Merge commit '98bb80a243b58c43453e9be69d19d0350286549c' into int-new
Diffstat (limited to 'nest')
-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); } } |