summaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2021-04-20 10:50:10 +0200
committerWerner Koch <wk@gnupg.org>2021-04-20 10:50:10 +0200
commit45918813f0599505e4f84bd44b09fb708b4e7f23 (patch)
tree5f65a09232336e12e2201b64036e804576a131e1 /scd
parentgpgconf: Fix a diagnostic output. (diff)
downloadgnupg2-45918813f0599505e4f84bd44b09fb708b4e7f23.tar.xz
gnupg2-45918813f0599505e4f84bd44b09fb708b4e7f23.zip
Support log-file option from common.conf for all daemon.
* agent/gpg-agent.c: Include comopt.h. (main): Read log-file option from common.conf. (reread_configuration): Ditto. * dirmngr/dirmngr.c: Include comopt.h. (main): Read log-file option from common.conf. (reread_configuration): Ditto. * kbx/keyboxd.c: Include comopt.h. (main): Read log-file option from common.conf. (reread_configuration): Ditto. * scd/scdaemon.c: Include comopt.h. (main): Read log-file option from common.conf. Signed-off-by: Werner Koch <wk@gnupg.org>
Diffstat (limited to 'scd')
-rw-r--r--scd/scdaemon.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/scd/scdaemon.c b/scd/scdaemon.c
index eddc83256..60d68c26a 100644
--- a/scd/scdaemon.c
+++ b/scd/scdaemon.c
@@ -54,6 +54,7 @@
#include "../common/gc-opt-flags.h"
#include "../common/asshelp.h"
#include "../common/exechelp.h"
+#include "../common/comopt.h"
#include "../common/init.h"
#ifndef ENAMETOOLONG
@@ -652,6 +653,17 @@ main (int argc, char **argv )
if (log_get_errorcount(0))
exit(2);
+
+ /* Process common component options. */
+ if (parse_comopt (GNUPG_MODULE_NAME_SCDAEMON, debug_argparser))
+ exit(2);
+
+ if (!logfile)
+ {
+ logfile = comopt.logfile;
+ comopt.logfile = NULL;
+ }
+
if (nogreeting )
greeting = 0;