mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-29 03:00:33 +01:00
device: fix activation_source_schedule() for rescheduling the same function
Fixes: 78ca961c0f
This commit is contained in:
parent
92ea1bdb06
commit
994f1ca96e
1 changed files with 1 additions and 1 deletions
|
|
@ -3837,7 +3837,7 @@ activation_source_schedule (NMDevice *self, ActivationHandleFunc func, int famil
|
|||
|
||||
act_data = activation_source_get_by_family (self, family, &source_func);
|
||||
|
||||
if (act_data->id && act_data->func != func) {
|
||||
if (act_data->id && act_data->func == func) {
|
||||
/* Don't bother rescheduling the same function that's about to
|
||||
* run anyway. Fixes issues with crappy wireless drivers sending
|
||||
* streams of associate events before NM has had a chance to process
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue