1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00

Also print agent and dirmngr info.

This commit is contained in:
Werner Koch 2004-05-11 09:24:09 +00:00
parent d3184ce584
commit 13b6205066

View File

@ -814,12 +814,19 @@ gpgsm_server (certlist_t default_recplist)
if (opt.verbose)
{
char *tmp = NULL;
const char *s1 = getenv ("GPG_AGENT_INFO");
const char *s2 = getenv ("DIRMNGR_INFO");
if (asprintf (&tmp,
"Home: %s\n"
"Config: %s\n"
"AgentInfo: %s\n"
"DirmngrInfo: %s\n"
"%s",
opt.homedir,
opt.config_filename,
s1?s1:"[not set]",
s2?s2:"[not set]",
hello) > 0)
{
assuan_set_hello_line (ctx, tmp);