diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-12-29 17:12:47 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2015-12-29 17:12:47 +0100 |
commit | e691d16a63ce40bc56ecbc970e8118686d4b0148 (patch) | |
tree | 22d0ea12cedd4f69c0d10610bf475b3b85936fb2 /sysdep/linux | |
parent | 74c838a87000ca800e8b3f265340c1317989a04a (diff) |
Explicit ip4_addr / ip6_addr printf support
Diffstat (limited to 'sysdep/linux')
-rw-r--r-- | sysdep/linux/netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/linux/netlink.c b/sysdep/linux/netlink.c index be790c29..530cb240 100644 --- a/sysdep/linux/netlink.c +++ b/sysdep/linux/netlink.c @@ -691,7 +691,7 @@ nl_parse_addr4(struct ifaddrmsg *i, int scan, int new) ifa.brd = ipa_from_ip4(xbrd); else if (ifi->flags & IF_TMP_DOWN) /* Complain only during the first scan */ { - log(L_ERR "KIF: Invalid broadcast address %I for %s", xbrd, ifi->name); + log(L_ERR "KIF: Invalid broadcast address %I4 for %s", xbrd, ifi->name); ifa.brd = ipa_from_ip4(ybrd); } } |