From 584f467e13712a247cf8f44adf7e09b96215d4a2 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 9 Sep 2020 10:59:12 +0200 Subject: [PATCH] device: fix wrongly considering ipv6.may-fail for ipv4 Fixes: 5e71f016057a ('device: merge stage3 and stage4 ip-config function for IPv4 and IPv6') (cherry picked from commit a0179362231e2c1c4ebba7d5616da2a4677b1c4b) (cherry picked from commit 0adfcadc9d6055e8717e043996a2ca5730462831) (cherry picked from commit 1438d5a9f07a4a412dbc250b1171b81f614f78ce) --- src/devices/nm-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index d2850fb88e..82f4f10a13 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -10942,7 +10942,7 @@ activate_stage4_ip_config_timeout_4 (NMDevice *self) NMActStageReturn ret = NM_ACT_STAGE_RETURN_FAILURE; NMDeviceStateReason failure_reason = NM_DEVICE_STATE_REASON_NONE; - ret = NM_DEVICE_GET_CLASS (self)->act_stage4_ip_config_timeout (self, AF_INET6, &failure_reason); + ret = NM_DEVICE_GET_CLASS (self)->act_stage4_ip_config_timeout (self, AF_INET, &failure_reason); if (ret == NM_ACT_STAGE_RETURN_POSTPONE) return; else if (ret == NM_ACT_STAGE_RETURN_FAILURE) {