diff options
author | Thomas Haller <thaller@redhat.com> | 2015-09-04 13:39:18 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2015-09-04 13:45:13 +0200 |
commit | ed7198ad992f7119d0670edd7d322296ce4dfb3a (patch) | |
tree | 2504842da9f0390c6424ed912047a0be56d72dd1 /src/dns-manager | |
parent | de4357d9f492f29b062ea421ce3d6663f0ee9f8c (diff) | |
download | NetworkManager-ed7198ad992f7119d0670edd7d322296ce4dfb3a.tar.gz |
dns: fix logging in nm_dns_manager_end_updates()
Diffstat (limited to 'src/dns-manager')
-rw-r--r-- | src/dns-manager/nm-dns-manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dns-manager/nm-dns-manager.c b/src/dns-manager/nm-dns-manager.c index 29dc5a212d..947cd62d93 100644 --- a/src/dns-manager/nm-dns-manager.c +++ b/src/dns-manager/nm-dns-manager.c @@ -1214,7 +1214,7 @@ nm_dns_manager_end_updates (NMDnsManager *self, const char *func) compute_hash (self, new); changed = (memcmp (new, priv->prev_hash, sizeof (new)) != 0) ? TRUE : FALSE; - _LOGD ("(%s): DNS configuration %s", __func__, changed ? "changed" : "did not change"); + _LOGD ("(%s): DNS configuration %s", func, changed ? "changed" : "did not change"); priv->updates_queue--; if ((priv->updates_queue > 0) || (changed == FALSE)) { |