diff options
author | Werner Koch <wk@gnupg.org> | 2024-08-22 18:30:51 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2024-08-22 18:30:51 +0200 |
commit | 41b06b5579f2a43499c840a227b033f9f5302ec5 (patch) | |
tree | 19b91ee1be4c3d12fd439a325c066be5b93a6eeb /common | |
parent | doc: Remove included yat2m and build HTML versions of the man pages. (diff) | |
download | gnupg2-41b06b5579f2a43499c840a227b033f9f5302ec5.tar.xz gnupg2-41b06b5579f2a43499c840a227b033f9f5302ec5.zip |
common: Do not call the agent with the obsolete --use-standard-socket.
* common/asshelp.c (start_new_service): Drop that option.
--
This avoids a useless warnings.
Diffstat (limited to 'common')
-rw-r--r-- | common/asshelp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/common/asshelp.c b/common/asshelp.c index a31fa83bc..0fdf8dda9 100644 --- a/common/asshelp.c +++ b/common/asshelp.c @@ -512,8 +512,6 @@ start_new_service (assuan_context_t *r_ctx, i = 0; argv[i++] = "--homedir"; argv[i++] = abs_homedir; - if (module_name_id == GNUPG_MODULE_NAME_AGENT) - argv[i++] = "--use-standard-socket"; if (program_arg) argv[i++] = program_arg; argv[i++] = "--daemon"; |