mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-25 13:50:26 +01:00
device: fix wrongly considering ipv6.may-fail for ipv4
Fixes:5e71f01605('device: merge stage3 and stage4 ip-config function for IPv4 and IPv6') (cherry picked from commita017936223) (cherry picked from commit0adfcadc9d) (cherry picked from commit1438d5a9f0) (cherry picked from commit584f467e13)
This commit is contained in:
parent
187003882e
commit
a6490db945
1 changed files with 1 additions and 1 deletions
|
|
@ -10527,7 +10527,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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue