summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-12-03 11:02:21 +0100
committerThomas Haller <thaller@redhat.com>2018-12-11 09:23:47 +0100
commit128aec5c2ea1206b26210a0d256adbd34276a401 (patch)
treede1dfbf4f3b8298504db274b13cd8da3e3e9d25b
parent1fac911cf0c200b3c85625cad02daa05eaf4c225 (diff)
downloadNetworkManager-128aec5c2ea1206b26210a0d256adbd34276a401.tar.gz
connectivity: issue connectivity check right away on configuration reload
-rw-r--r--src/devices/nm-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index ceb1e91b89..d90e4d819b 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -2766,8 +2766,8 @@ concheck_update_interval (NMDevice *self, int addr_family, gboolean check_now)
void
nm_device_check_connectivity_update_interval (NMDevice *self)
{
- concheck_update_interval (self, AF_INET, FALSE);
- concheck_update_interval (self, AF_INET6, FALSE);
+ concheck_update_interval (self, AF_INET, TRUE);
+ concheck_update_interval (self, AF_INET6, TRUE);
}
static void