mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-26 01:50:08 +01:00
ip6: fix log message arguments
This commit is contained in:
parent
2282f352a4
commit
9f85d3533e
1 changed files with 4 additions and 2 deletions
|
|
@ -515,7 +515,8 @@ process_addr (NMIP6Manager *manager, struct nl_msg *msg)
|
|||
* to notify higher levels if we actually changed something.
|
||||
*/
|
||||
if (nl_cache_nitems (priv->addr_cache) == old_size) {
|
||||
nm_log_dbg (LOGD_IP6, "(%s): address cache unchanged, ignoring message");
|
||||
nm_log_dbg (LOGD_IP6, "(%s): address cache unchanged, ignoring message",
|
||||
device->iface);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
@ -551,7 +552,8 @@ process_route (NMIP6Manager *manager, struct nl_msg *msg)
|
|||
|
||||
/* As above in process_addr */
|
||||
if (nl_cache_nitems (priv->route_cache) == old_size) {
|
||||
nm_log_dbg (LOGD_IP6, "(%s): route cache unchanged, ignoring message");
|
||||
nm_log_dbg (LOGD_IP6, "(%s): route cache unchanged, ignoring message",
|
||||
device->iface);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue