summaryrefslogtreecommitdiff
path: root/src/nm-iface-helper.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-07-13 19:20:08 +0200
committerThomas Haller <thaller@redhat.com>2015-07-14 13:36:50 +0200
commit6124f5b94a7bc471803e8f8e384f182f708d839a (patch)
tree54ed9fc04ef8e68061061a28d97b8d58e63dfb87 /src/nm-iface-helper.c
parent65f2090cc2341d4287b13751ac7bdd0b15039cac (diff)
downloadNetworkManager-6124f5b94a7bc471803e8f8e384f182f708d839a.tar.gz
routes/trival: add argument @routes_full_sync to IP config commit
The argument is still unused, so no behavioral change yet.
Diffstat (limited to 'src/nm-iface-helper.c')
-rw-r--r--src/nm-iface-helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-iface-helper.c b/src/nm-iface-helper.c
index 3cdd165965..cbff221a85 100644
--- a/src/nm-iface-helper.c
+++ b/src/nm-iface-helper.c
@@ -104,7 +104,7 @@ dhcp4_state_changed (NMDhcpClient *client,
nm_ip4_config_subtract (existing, last_config);
nm_ip4_config_merge (existing, ip4_config);
- if (!nm_ip4_config_commit (existing, ifindex, global_opt.priority_v4))
+ if (!nm_ip4_config_commit (existing, ifindex, TRUE, global_opt.priority_v4))
nm_log_warn (LOGD_DHCP4, "(%s): failed to apply DHCPv4 config", global_opt.ifname);
if (last_config)
@@ -241,7 +241,7 @@ rdisc_config_changed (NMRDisc *rdisc, NMRDiscConfigMap changed, gpointer user_da
nm_ip6_config_subtract (existing, last_config);
nm_ip6_config_merge (existing, ip6_config);
- if (!nm_ip6_config_commit (existing, ifindex))
+ if (!nm_ip6_config_commit (existing, ifindex, TRUE))
nm_log_warn (LOGD_IP6, "(%s): failed to apply IPv6 config", global_opt.ifname);
if (last_config)