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

Return cancel flag also for the old agent protocol.

This commit is contained in:
Werner Koch 2003-04-10 08:51:29 +00:00
parent ed16a85de8
commit 5ee4951f28

View File

@ -772,7 +772,11 @@ agent_get_passphrase ( u32 *keyid, int mode, const char *tryagain_text,
return pw;
}
else if ( reply == GPGA_PROT_CANCELED )
log_info ( _("cancelled by user\n") );
{
log_info ( _("cancelled by user\n") );
if (canceled)
*canceled = 1;
}
else
log_error ( _("problem with the agent: agent returns 0x%lx\n"),
(ulong)reply );