aboutsummaryrefslogtreecommitdiffstats
path: root/sm/call-agent.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-02-17 17:21:07 +0000
committerWerner Koch <[email protected]>2004-02-17 17:21:07 +0000
commit81edc1e40ecb73c83d983fbf63b012559d063ad9 (patch)
treec862e3369aeac7a3f3371dc6cedcf5ec9f22fae5 /sm/call-agent.c
parentMore samples (diff)
downloadgnupg-81edc1e40ecb73c83d983fbf63b012559d063ad9.tar.gz
gnupg-81edc1e40ecb73c83d983fbf63b012559d063ad9.zip
* gpgsm.c: Fixed value parsing for --with-validation.
* call-agent.c (start_agent): Ignore an empty GPG_AGENT_INFO. * call-dirmngr.c (start_dirmngr): Likewise for DIRMNGR_INFO.
Diffstat (limited to 'sm/call-agent.c')
-rw-r--r--sm/call-agent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sm/call-agent.c b/sm/call-agent.c
index 30a1b6480..a0a1da5c3 100644
--- a/sm/call-agent.c
+++ b/sm/call-agent.c
@@ -78,10 +78,10 @@ start_agent (void)
if (agent_ctx)
return 0; /* fixme: We need a context for each thread or serialize
the access to the agent (which is suitable given that
- the agent is not MT */
+ the agent is not MT. */
infostr = force_pipe_server? NULL : getenv ("GPG_AGENT_INFO");
- if (!infostr)
+ if (!infostr || !*infostr)
{
const char *pgmname;
const char *argv[3];