diff options
Diffstat (limited to 'src/libnmc-base/nm-secret-agent-simple.c')
| -rw-r--r-- | src/libnmc-base/nm-secret-agent-simple.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libnmc-base/nm-secret-agent-simple.c b/src/libnmc-base/nm-secret-agent-simple.c index de3de05a..1b9aa571 100644 --- a/src/libnmc-base/nm-secret-agent-simple.c +++ b/src/libnmc-base/nm-secret-agent-simple.c @@ -787,7 +787,7 @@ try_spawn_vpn_auth_helper(RequestData *request, GPtrArray *secrets) if (!g_spawn_async_with_pipes(NULL, (char **) auth_dialog_argv->pdata, NULL, - G_SPAWN_DO_NOT_REAP_CHILD, + G_SPAWN_CLOEXEC_PIPES | G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &auth_dialog_pid, @@ -1084,7 +1084,7 @@ get_secrets(NMSecretAgentOld *agent, * nm_secret_agent_simple_response: * @self: the #NMSecretAgentSimple * @request_id: the request ID being responded to - * @secrets: (allow-none): the array of secrets, or %NULL + * @secrets: (nullable): the array of secrets, or %NULL * * Response to a #NMSecretAgentSimple::get-secrets signal. * @@ -1252,7 +1252,7 @@ delete_secrets(NMSecretAgentOld *agent, /** * nm_secret_agent_simple_enable: * @self: the #NMSecretAgentSimple - * @path: (allow-none): the path of the connection (if any) to handle secrets + * @path: (nullable): the path of the connection (if any) to handle secrets * for. If %NULL, secrets for any connection will be handled. * * Enables servicing the requests including the already queued ones. If @path |