diff options
author | Werner Koch <[email protected]> | 2019-05-16 10:24:08 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2019-05-16 10:27:03 +0000 |
commit | 3a28706cfd960ff84dda9a22aa2f160b4c2efbb5 (patch) | |
tree | 7196085e470a8cf145c60c7aa8235b3f9af532ad /tools/gpgconf-comp.c | |
parent | doc: Do not mention gpg's deprecated --keyserver option. (diff) | |
download | gnupg-3a28706cfd960ff84dda9a22aa2f160b4c2efbb5.tar.gz gnupg-3a28706cfd960ff84dda9a22aa2f160b4c2efbb5.zip |
gpgconf: Before --launch check that the config file is fine.
* tools/gpgconf-comp.c (gc_component_launch): Check the conf file.
* tools/gpgconf.c (gpgconf_failure): Call log_flush.
--
GnuPG-bug-id: 4497
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'tools/gpgconf-comp.c')
-rw-r--r-- | tools/gpgconf-comp.c | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index 19912baf2..d4b3ebd29 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -1269,8 +1269,17 @@ gc_component_launch (int component) if (!(component == GC_COMPONENT_GPG_AGENT || component == GC_COMPONENT_DIRMNGR)) { - es_fputs (_("Component not suitable for launching"), es_stderr); - es_putc ('\n', es_stderr); + log_error ("%s\n", _("Component not suitable for launching")); + gpgconf_failure (0); + } + + if (gc_component_check_options (component, NULL, NULL)) + { + log_error (_("Configuration file of component %s is broken\n"), + gc_component[component].name); + if (!opt.quiet) + log_info (_("Note: Use the command \"%s%s\" to get details.\n"), + "gpgconf --check-options ", gc_component[component].name); gpgconf_failure (0); } @@ -1681,8 +1690,9 @@ collect_error_output (estream_t fp, const char *tag) } -/* Check the options of a single component. Returns 0 if everything - is OK. */ +/* Check the options of a single component. If CONF_FILE is NULL the + * standard config file is used. If OUT is not NULL the output is + * written to that stream. Returns 0 if everything is OK. */ int gc_component_check_options (int component, estream_t out, const char *conf_file) { |