From 9f85d3533ebb50ca4e8a3f6b153308ea7498a3d0 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 30 Apr 2010 17:33:44 -0700 Subject: [PATCH] ip6: fix log message arguments --- src/ip6-manager/nm-ip6-manager.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ip6-manager/nm-ip6-manager.c b/src/ip6-manager/nm-ip6-manager.c index e9a60ee8c4..0b7949d974 100644 --- a/src/ip6-manager/nm-ip6-manager.c +++ b/src/ip6-manager/nm-ip6-manager.c @@ -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; }