summaryrefslogtreecommitdiff
path: root/src/devices/nm-device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/nm-device.c')
-rw-r--r--src/devices/nm-device.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index 3b595938df..e7a4a059a0 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -11615,7 +11615,8 @@ nm_device_reactivate_ip4_config (NMDevice *self,
}
}
- if (!ip_config_merge_and_apply (self, AF_INET, TRUE))
+ if ( nm_device_get_ip_ifindex (self) > 0
+ && !ip_config_merge_and_apply (self, AF_INET, TRUE))
_LOGW (LOGD_IP4, "Failed to reapply IPv4 configuration");
}
}
@@ -11688,7 +11689,8 @@ nm_device_reactivate_ip6_config (NMDevice *self,
}
}
- if (!ip_config_merge_and_apply (self, AF_INET6, TRUE))
+ if ( nm_device_get_ip_ifindex (self) > 0
+ && !ip_config_merge_and_apply (self, AF_INET6, TRUE))
_LOGW (LOGD_IP4, "Failed to reapply IPv6 configuration");
}
}