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-10 08:31:47 +0100
commit0af98c4e03cfcf14b6e1b597301b2d13d5a3ec85 (patch)
treecb12bebe454d2f91f4ac7984d70578783115ed88
parentcb2462e6438deff0ad34a5ff8369cddf6524a9b7 (diff)
downloadNetworkManager-0af98c4e03cfcf14b6e1b597301b2d13d5a3ec85.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 aa2a547579..fb482a9ab7 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