mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-08 11:19:16 +02: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.
|
* to notify higher levels if we actually changed something.
|
||||||
*/
|
*/
|
||||||
if (nl_cache_nitems (priv->addr_cache) == old_size) {
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -551,7 +552,8 @@ process_route (NMIP6Manager *manager, struct nl_msg *msg)
|
||||||
|
|
||||||
/* As above in process_addr */
|
/* As above in process_addr */
|
||||||
if (nl_cache_nitems (priv->route_cache) == old_size) {
|
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;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue