mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 17:00:14 +01:00
clients: fix processing a secret agent request
This commit is contained in:
parent
224acba8f6
commit
a1f16d255d
1 changed files with 1 additions and 1 deletions
|
|
@ -620,7 +620,7 @@ nm_secret_agent_simple_enable (NMSecretAgent *agent)
|
|||
for (iter = requests; iter; iter = g_list_next (iter)) {
|
||||
NMSecretAgentSimpleRequest *request = iter->data;
|
||||
|
||||
if (!g_str_has_prefix (request->request_id, priv->path)) {
|
||||
if (g_str_has_prefix (request->request_id, priv->path)) {
|
||||
request_secrets_from_ui (request);
|
||||
} else {
|
||||
/* We only handle requests for connection with @path if set. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue