diff options
author | Werner Koch <[email protected]> | 2023-08-29 11:18:13 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-08-29 11:18:13 +0000 |
commit | a430f2254999383d48d3891a79623a4b33e7ce2d (patch) | |
tree | bb5112359a5e1f2d607b9bba24c1fa5331925508 /common/get-passphrase.c | |
parent | agent: Add agent_kick_the_loop function. (diff) | |
download | gnupg-a430f2254999383d48d3891a79623a4b33e7ce2d.tar.gz gnupg-a430f2254999383d48d3891a79623a4b33e7ce2d.zip |
common: Prepare for more flags in start_new_service.
* common/asshelp.h (ASSHELP_FLAG_AUTOSTART): New.
* common/asshelp.c (start_new_service): Rename arg autostart to flags
and adjust checks.
(start_new_gpg_agent): Likewise. Change all callers.
(start_new_keyboxd): Likewise. Change all callers.
(start_new_dirmngr): Likewise. Change all callers.
--
It is easier to have a generic flags arg instead of adding more and
more dedicated args. verbose and debug are kept as they are because
they are not boolean.
Diffstat (limited to 'common/get-passphrase.c')
-rw-r--r-- | common/get-passphrase.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/get-passphrase.c b/common/get-passphrase.c index c24b40e88..8ea822710 100644 --- a/common/get-passphrase.c +++ b/common/get-passphrase.c @@ -94,7 +94,8 @@ start_agent (void) agentargs.lc_ctype, agentargs.lc_messages, agentargs.session_env, - 1, agentargs.verbosity, 0, NULL, NULL); + ASSHELP_FLAG_AUTOSTART, + agentargs.verbosity, 0, NULL, NULL); if (!err) { /* Tell the agent that we support Pinentry notifications. No |