mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-28 12:10:10 +01:00
device: after completing a connection, check it's compatible
This commit is contained in:
parent
9c24c81ad0
commit
48710fbf8d
1 changed files with 4 additions and 1 deletions
|
|
@ -5732,7 +5732,10 @@ nm_device_complete_connection (NMDevice *self,
|
|||
error))
|
||||
return FALSE;
|
||||
|
||||
return nm_connection_verify (connection, error);
|
||||
if (!nm_connection_verify (connection, error))
|
||||
return FALSE;
|
||||
|
||||
return nm_device_check_connection_compatible (self, connection, error);
|
||||
}
|
||||
|
||||
gboolean
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue