mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 18:00:10 +01:00
manager: don't re-assume generated connections
They're being torn down as their device is being deactivated. https://bugzilla.gnome.org/show_bug.cgi?id=744812
This commit is contained in:
parent
6cdcf36a3d
commit
d37f2280b7
1 changed files with 3 additions and 0 deletions
|
|
@ -1545,6 +1545,9 @@ done:
|
|||
static gboolean
|
||||
match_connection_filter (NMConnection *connection, gpointer user_data)
|
||||
{
|
||||
if (nm_settings_connection_get_nm_generated_assumed (NM_SETTINGS_CONNECTION (connection)))
|
||||
return FALSE;
|
||||
|
||||
return nm_device_check_connection_compatible (NM_DEVICE (user_data), connection);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue