diff options
| author | Michael Biebl <biebl@debian.org> | 2022-08-26 20:37:52 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-08-26 20:37:52 +0200 |
| commit | 31b0de3e5396f971e1476a155031a2c6d30af711 (patch) | |
| tree | b248ac35833f8356ece0e5719521d97c1cb03925 /src/core/devices/wifi | |
| parent | 6ba52b312b7e2bd5744d3edacbe4149212242c74 (diff) | |
| parent | ab0efddcdb48d800e2f938da54cfe3074640792e (diff) | |
Update upstream source from tag 'upstream/1.40.0'
Update to upstream version '1.40.0' with Debian dir a59a8bafb9190ecb810335bfdaa82270e423df1d
Diffstat (limited to 'src/core/devices/wifi')
| -rw-r--r-- | src/core/devices/wifi/nm-device-wifi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/devices/wifi/nm-device-wifi.c b/src/core/devices/wifi/nm-device-wifi.c index 39c68d77..43798b85 100644 --- a/src/core/devices/wifi/nm-device-wifi.c +++ b/src/core/devices/wifi/nm-device-wifi.c @@ -2520,7 +2520,7 @@ supplicant_iface_state(NMDeviceWifi *self, _LOGD(LOGD_WIFI, "supplicant state settled after roaming, renew dynamic IP configuration"); nm_clear_g_source_inst(&priv->roam_supplicant_wait_source); - nm_device_update_dynamic_ip_setup(device); + nm_device_update_dynamic_ip_setup(device, "roamed to a different AP"); } } break; @@ -2663,7 +2663,7 @@ supplicant_iface_notify_current_bss(NMSupplicantInterface *iface, if (nm_supplicant_interface_get_state(priv->sup_iface) == NM_SUPPLICANT_INTERFACE_STATE_COMPLETED) { - nm_device_update_dynamic_ip_setup(NM_DEVICE(self)); + nm_device_update_dynamic_ip_setup(NM_DEVICE(self), "roamed to a different AP"); } else { /* Wait that the authentication to new the AP completes before * trying to renew, otherwise the DHCP REQUEST could be lost |