mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-02 12:01:32 +01:00
tools: Fix condition for gpg-connect-agent.
* tools/gpg-connect-agent.c (start_agent): Add paren. -- The intention is comparing the error code depending opt.use_dirmngr. Considering C Operator Precedence, we should have paren here. Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
7ae1857c90
commit
f52f6af834
@ -2237,7 +2237,7 @@ start_agent (void)
|
|||||||
{
|
{
|
||||||
if (!opt.autostart
|
if (!opt.autostart
|
||||||
&& (gpg_err_code (err)
|
&& (gpg_err_code (err)
|
||||||
== opt.use_dirmngr? GPG_ERR_NO_DIRMNGR : GPG_ERR_NO_AGENT))
|
== (opt.use_dirmngr? GPG_ERR_NO_DIRMNGR : GPG_ERR_NO_AGENT)))
|
||||||
{
|
{
|
||||||
/* In the no-autostart case we don't make gpg-connect-agent
|
/* In the no-autostart case we don't make gpg-connect-agent
|
||||||
fail on a missing server. */
|
fail on a missing server. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user